전체 글(370)
-
맥에서 사파리 팝업 해제
Safari -> 환경설정 -> 보안탭"팝업 윈도우 차단" 체크박스를 해제하면 된다.
2017.02.01 -
swift3 Bool 기본값
* 아래 처럼 선언 하였을 때 기본값이 false가 된다. var TestBool = Bool() print(TestBool) // false * 기본 값을 nil로 표현var TestBool2: Bool? = nilprint(TestBool2) // nil * 기본 값을 true로 표현var TestBool3 = trueprint(TestBool3) // true Bool 기본값을 블로그에 기재한 이유는..TestBool = Bool() 하였을 경우, 기본으로 false의 값이 반환되는 것을 모르고 있었다.
2017.01.31 -
[ERROR] ITMS-90474
http://fliperamma.com/unity-and-ios-9-invalid-bundle-ipad-multitasking-support/ Appstore에 업로드를 하려는 경우 아래와 같이 에러가 발생하는 경우가 생긴다. 해결은 Info.plist에 키값을 추가하자. UIRequiresFullScreen
2017.01.27 -
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