import ProjectDescription | |
import Foundation | |
func hello() -> Project { | |
let projFile = Path.relativeToRoot("Project.swift") | |
print(#function, "\(projFile.pathString)", #filePath) | |
print("FileManager.default.currentDirectoryPath: ", FileManager.default.currentDirectoryPath) | |
let basePath = URL(fileURLWithPath: "/Users/minsone/Developer/20240923/iOSApp/Project.swift") |
https://github.com/ricocrescenzio95/SUITextField/blob/83c73d05b26b2e097f2ea9bd03dfb5df9dc20a05/Sources/SwiftUITextField/TextField/SUITextField.swift#L995 | |
https://github.com/Open-Bytes/SwiftUIFormValidator/blob/29547a930990b4e4b7a6cc4919615a746d43742a/Example/FormTextField.swift#L36 | |
https://github.com/p2p-org/p2p-wallet-ios/blob/e62fb17dae27767d6d7622a30bbe441efee5120d/p2p_wallet/Scenes/Main/Send/Input/Subviews/AmountView/SendInputAmountField.swift#L141 | |
https://github.com/aws-samples/amazon-ivs-real-time-for-ios-demo/blob/4d87fcfe549e76469cd6234dc90e69d3f6ca6269/IVS%20Real-time/Views/Components/CustomTextField.swift#L30 | |
https://github.com/SnowLukin/HotelMock/blob/9ef4f4ca1d953d701c75d6f5118b82bbcdeda084/HotelMock/Features/Booking/Views/PhoneTextField.swift#L13 | |
https://github.dev/kiwicom/orbit-swiftui/blob/e3006e9452829df0951652dd5a243b8ea4253fe8/Sources/Orbit/Support/TextFields/TextView.swift#L47 | |
https://github.com/chaltteok-studio/ChapssalKit-iOS/blob/b44051180ce26d2cea76ce3c6ccf1cb4d920d2a4/Sources/Chapssal |
<!DOCTYPE html> | |
<html lang="ko"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>iOS 웹뷰 호출</title> | |
<style> | |
/* 버튼을 화면 가운데 정렬하고 적당한 크기로 설정하기 위한 CSS */ | |
.centered { | |
position: absolute; |
enum Parked {} | |
enum Driving {} | |
enum Gaming {} | |
private class EngineSystem { | |
static var shared = EngineSystem() | |
private init() {} | |
func start() {/**/} | |
func accelerate() { /* Uses gas pedal input to accelerate the real car */ } |
set -Ceu | |
PACKAGE_DIR=$( | |
cd "$(dirname "$0")/.." || exit 1 | |
pwd | |
) | |
cd "${PACKAGE_DIR}" || exit 1 | |
SCHEME="MachOKit" | |
DERIVED_DATA_PATH=".build" |
- Presenting SharePlay activities from your app’s UI
Make it easy for people to start activities from your app’s UI, from the system share sheet, or using AirPlay over AirDrop. After you define one or more SharePlay activities for your app, make them easy for people to discover in your UI. Include buttons, menus items, and other elements to start activities, present activities in system interfaces like the share sheet, and update your activities to take advantage of other system behaviors.
Starting an activity requires an active FaceTime call or Messages conversation. When a conversation is active, you can start an activity right away from your UI. If no conversation is active, the Group Activities framework facilitates starting a conversation as part of starting your activity. Some system features also help you start conversations. > For guidance about the best ways
-
제목 : iOS 애플리케이션 개발 생산성 고찰 - 빠른 퇴근을 위한 우리는 어떻게 해야할 것인가?
-
목차
- 개발 생산성 고찰
- 개인의 개발 환경 개선
- 프로젝트 구조 개선
- 프로젝트 환경 개선
- 마치며
- 개발 생산성 고찰 - 우리는 왜 정시 퇴근을 지키지 못하는가?
enum DataState<V, E: Error> { | |
case idle | |
case initialLoading case reLoading (V) | |
case retryLoading (E) | |
case success (V) | |
case failure(E) | |
case paging (V) | |
case pagingFailure(V, E) | |
} |