출처http://kka7.tistory.com/27 프로토콜메소드, 프로퍼티, 특정 작업이나 기능에 적합한다른 요구사항을 상세하게 정의한다. 문법 protocol SomeProtocol { } protocol AnotherProtocol: SomeProtocol { } protocol TheOtherProtocol : SomeProtocol, AnotherProtocol { } 프로퍼티 요구사항프로토콜은 프로퍼티가 저장 프로퍼티이거나 계산 프로퍼티인지 지정하지 않는다.다만 필수 프로퍼티 이름과 타입, gettable, settable 인지 반드시 지정해야한다. { get set } 을 요구하는 프로토콜 프로퍼티가 존재한다면상수 저장 프로퍼티 ( let a ), 읽기 전용 계산 프로퍼티 ( var a : ..
1. 간단한 Retain Cycle @interface Item : NSObject@property (nonatomic, strong) Item* value1;@property (nonatomic, strong) Item* value2;@end - (void)someMethod {Item *a1 = [[Item alloc] init];Item *a2 = [[Item alloc] init];a1.value2 = a2;} 객체 참조카운트 a1 1 a2 2 @interface Item : NSObject@property (nonatomic, strong) Item* value1;@property (nonatomic, strong) Item* value2;@end - (void)someMethod {Item *..
- Total
- Today
- Yesterday
- Arc
- NSManagedObject
- set
- EffectiveObjectiveC
- Swift3
- Swfit
- dictionary
- Swift 3.0
- HTTP
- optional
- string
- delegate
- CIImage
- RunLoop
- Swift 3
- 읽기 좋은 코드가 좋은 코드다
- 꺼내먹어요
- docker
- AWS
- applicationWillResignActive
- Block
- Swift
- coredata
- NSManagedObjectContext
- UIView
- ios
- CGImage
- workerThread
- NSManagedObjectModel
- thread
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |