전체 글(371)
-
[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 -
swift3 한글url 처리
url에 한글이 존재할 경우 nil값을 반환하는 경우가 생긴다. 아래 예시를 변경해 보자. let Orgurl = "http://blog.goodgods.com/page?"let Value = "한글값"let Parameter = "name=\(value)" if let Url = URL(string: Orgurl+Parameter) {} 변경 후let Orgurl = "http://blog.goodgods.com/page?"let Value = "한글값" let EncodeValue = Value.addingPercentEncoding(withAllowedCharacters: NSCharacterSet.urlQueryAllowed) { let Parameter = "name=\(EncodeValue)"..
2016.12.19 -
이미지는 알파 채널 또는 투명도를 포함할 수 없습니다
itunesconnect에서 아이콘 이미지를 올려보았지만, 아래와 같은 메세지로 업로드가 되지 않았다. 이미지는 알파 채널 또는 투명도를 포함할 수 없습니다 확장자를 PNG에서 JPG로 변경 후 올렸다.포토샵에서 아이콘 이미지를 만들기 위해 투명도를 체크한 후 바탕화면에 투명도 없이 페인트로 전체 색을 하였지만, 파일 속성에 투명도 정보가 포함 되었나 싶기도 하다. PNG확장자로 투명도를 해제 후 다시 만들어 확인 할 수 있겠지만, 귀찮아서 안했다.
2016.12.19