4월, 2017
27 04 2017
Haeng Ho Kang | Programming, Swift |
1.키체인에 접근( 상단의 spotlight 검색에서 키체인) (1) Apple Worldwide Developer Relations Certification Authority (2) iPhone Developer : (사용자이름) (고유번호) (3) iPhone Distribution : (사용자이름) (고유번호) 를 옮기면 된다. 1번의 경우는 키체인에서 왼쪽 시스템 클릭하면 오른쪽에 Apple Worldwide Developer Relations Certification Authority 항목에 오른쪽 마우스하고 보내기를 누르면 된다. ==> 등록시에는 drag and drop 하면됨 2번,3번의 경우는 로그인의 인증서를 선택하고 오른쪽 마우스하고 […]
19 04 2017
Haeng Ho Kang | Programming, Swift |
소스변경 : WebFrame –> UIWebView로 변경 1)Error: ld: library not found for -lcrt1.3.1.o Solution: If your project source have deployment target from iOS 5.0 then change it to iOS 6.0 or later and your error will be fix. Now that work fine for device too. 2)Apple Match-O Linker (id)Error – Product > Clean Enable BitCode를 […]
7 04 2017
Haeng Ho Kang | Programming, Swift |
Loading Local HTML to WebView
|
override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. //getting local file let localHtmlFile = NSBundle.mainBundle().URLForResource("index", withExtension: "html"); //creating request let request = NSURLRequest(URL: localHtmlFile!); //loading request webView.loadRequest(request); } |
7 04 2017
Haeng Ho Kang | Programming, Swift |
ios 에서 이쁜 차트 Graph 사용하기 http://m.blog.naver.com/syowoo/220770292459