출처https://stackoverflow.com/questions/16748993/ios-seckeyref-to-nsdatahttps://developer.apple.com/documentation/security/certificate_key_and_trust_services/keys/storing_keys_as_data?language=objc iOS 10 이상에서의 Security.framework 가 SecKeyRef -> NSData *, NSData * -> SecKeyRef 로 변경하는 메소드를 제공한다. SecKeyRef -> NSData * 로 변경하기 CFErrorRef cfError = NULL; NSData *keyData = (__bridge_transfer NSData *)Sec..
출처https://developer.apple.com/library/content/qa/qa1719/_index.htmlhttps://stackoverflow.com/questions/14376883/is-nsurlisexcludedfrombackupkey-recursive iCloud Backup 막기막는 방법으로는 filePath 로부터 NSURL 객체를 가져와"NSURLIsExcludedFromBackupKey" 속성값을 YES 로 지정해주면 된다. NSError *attributedError = nil; BOOL isSuccess = [url setResourceValue:[NSNumber numberWithBool:YES] forKey:NSURLIsExcludedFromBackupKey erro..
출처http://seorenn.blogspot.kr/2015/12/swift-gcd-dispatch-semaphore.html DispatchSemaphore 를 사용하는 이유serial dispatch queue 또는 dispatch_barrier_async 함수보다작은 단위를 가진 소스코드의 작은 부분에 대한 동시성 제어가 필요한 경우 사용한다. DispatchSemaphore 사용하기DispatchSemaphore 의 init 시 사용되는 value 는 자원 개수를 뜻한다. semaphore.wait() 는 value 값을 줄이고,semaphore.signal() 은 value 값을 증가시킨다. value 값이 음수가 되면 해당 스레드는 동작을 멈추고 자원을 얻기위해 기다린다. .distantFut..
출처http://seorenn.blogspot.kr/2015/08/swift-dispatch-group.html DispatchGroup 을 사용하는 이유dispatch_group_async 를 통해 이미 group 안에 들어간 job 들이 끝나기를 기다렸다가 모두 완료되면 호출되기를 기대할 때 사용한다. DispatchGroup 사용하기기본적으로 wait 의 경우 synchronous 하게 동작하고,notify 의 경우 asynchronous 하게 동작한다. 1. enter, leave 를 사용하는 방법wait (synchronous) 사용할 때 notify (asynchronous) 사용할 때 2. enter, leave 를 사용하지 않는 방법 enter, leave 보다는 queue.async 의 ..
출처http://seorenn.blogspot.kr/2014/07/swift-objective-c.htmlhttp://seorenn.blogspot.kr/2014/08/objective-c-swift.html 개요 Objective C 프로젝트에서 Swift 코드 사용하기 Class 사용하기1. 프로젝트 설정 2. Swift Code 작성 3. Objective C 에서의 사용 Enum 사용하기 delegate 사용하기 Swift 프로젝트에서 Objective C 코드 사용하기 Class 사용하기1. 프로젝트 설정 2. Objective C Code 작성 3. Swift 에서의 사용 Enum 사용하기 delegate 사용하기 Apple Guide (Interacting With Objective-C Ap..
GCD 란멀티코어 프로세서를 위한 Thread 프로그래밍을 Mac OS 에서 자동으로관리 / 분배해주는 C Library 이다. Serial Queue let queue = DispatchQueue.init(label: "serialQueue") for i in 1...5 { queue.async { Thread.sleep(forTimeInterval: 1) print("\(i)") } } Concurrent Queue let queue = DispatchQueue.init(label: "concurrentQueue", attributes: .concurrent) for i in 1...5 { queue.async { Thread.sleep(forTimeInterval: 1) print("\(i)") }..
출처http://seorenn.blogspot.kr/2015/01/swift-singleton-pattern.html Objective-C 에서는? Objective C 에서 사용했던 방법은dispatch_once 를 이용한 방법이었다. + (nullable instancetype)sharedInstance { static dispatch_once_t onceToken; static BusinessManager *instance = nil; dispatch_once(&onceToken, ^{ instance = [[BusinessManager alloc] initPrivate]; }); return instance; } Swift 에서는? Swift 에서는 더욱더 간단하게 구현이 가능하다. Swift 에..
출처https://developer.apple.com/reference/foundation/nsurlsession?language=objchttps://www.raywenderlich.com/110458/nsurlsession-tutorial-getting-started NSURLSessioniOS 7부터 사용가능한 NSURLConnection 을 대체할 Networking API 이다.이 API 는 authentication 을 지원하는 많은 delegate set 을 가지고 있고app 이 suspended 되더라도 background 에서 download job 이 계속 실행되도록 할 수도 있다. 개념 NSURLSession 클래스는 데이터, 파일, ftp, http 및 https URL scheme..
출처https://developer.apple.com/reference/dispatch/1452933-dispatch_group_notify dispatch_group_notifydispatch_group_async 를 통해 이미 group 안에 들어간 job 들이끝나기를 기다렸다가 모두 완료되면 호출되기를 기대할 때 사용한다. dispatch_group_notify(, , ) param1. job 이 들어가 있는 group 2. group 안에 job 이 모두 완료되었을 때 완료 block 을 실행시키고 싶은 queue3. 완료되었을 때 실행시키고 싶은 job block 예제 dispatch_group_t group = dispatch_group_create(); dispatch_queue_t glob..
- Total
- Today
- Yesterday
- delegate
- CGImage
- Arc
- HTTP
- Swift
- applicationWillResignActive
- UIView
- set
- EffectiveObjectiveC
- Swift 3.0
- dictionary
- Swift3
- coredata
- docker
- CIImage
- thread
- NSManagedObjectModel
- ios
- RunLoop
- NSManagedObject
- 읽기 좋은 코드가 좋은 코드다
- Block
- Swfit
- workerThread
- 꺼내먹어요
- NSManagedObjectContext
- AWS
- string
- Swift 3
- optional
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |