Programming/Swift(93)
-
AVFoundation
http://iphonedevwiki.net/index.php/AudioServiceshttp://stackoverflow.com/questions/22850002/need-to-access-the-default-camera-shutter-sound-used-by-the-iphone import AVFoundation
2017.01.18 -
[ERROR] Cocoapods : Abort trap: 6
1. 문제 $ pod install...Abort trap: 6 2. 해결$ gem install cocoapods --pre $ pod install //정상적으로 작동 된다.
2017.01.13 -
[ERROR] objc[8355]: Class PLBuildVersion is implemented in both
문제: photoLibrary에 접근 하고자 하였으나 아래와 같은 에러가 발생되어 다운되어 버렸다. objc[8355]: Class PLBuildVersion is implemented in both/Users/goodgods/Documents/Xcode8/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices (0x11b496998) and /Users/goodgods/Documents/Xcode8/Xcode.app/Content..
2017.01.12 -
[ERROR] Could not locate device support files.
1. Xcode 버전 2. Xcode 시뮬레이터 최대 iOS버전 3. 아이폰 버전 4. 결론 - Xcode 에서 지원하는 OS 최대 버전 보다, 아이폰의 버전이 높을 경우 아래와 같은 에러 메세지를 보여,아이폰에서 시뮬레이션을 할 수 가 없다.
2017.01.09 -
AppStore 통계 관련 설명 URL
http://blog.scottlogic.com/2014/03/20/app-store-analysis.html
2017.01.06 -
swift3.0 2차 배열
1.var product = [String:[String]]() product = ["it":["phone","computer"],"school":["pen","note"]] product["it"]?.append("tablet") print(product) //["it": ["phone", "computer", "tablet"], "school": ["pen", "note"]] product.updateValue(["handle"], forKey: "car") print(product) //["it": ["phone", "computer", "tablet"], "car": ["handle"], "school": ["pen", "note"] 2.var product2 = [String:[String:An..
2017.01.05