일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 샘플
- 공략
- GCD
- UIView
- UITableView
- 포켓볼
- push
- 포켓몬 GO
- Bitcode
- swift3
- LG유플러스
- 스마트폰
- 신도림
- 페이백
- Example
- Check
- error
- loop
- afterdelay
- IOS
- 얻는법
- Xcode
- 아이폰7
- 해몽
- setting
- simulator
- 보라카이
- swift
- 신도림 테크노마트
- 앱스토어
- Today
- Total
목록도래울 (213)
도래울
날짜와 시간을 다루는 것을 정말 중요하고 어려운 일이다. 날짜와 시간이 복잡한 이유는 여러 가지가 있다. 세상이 너무나 커서 같은 시간을 사용할 수 없기 때문이기도 하고 종교적이 이유에서 문화마다 다른 달력을 사용하고 있는 것도 복잡한 이유이다.이 문서에는 iOS에서 날짜와 시간을 다루는 기본 클래스인 NSDate과 NSDate를 문자열로 혹은 문자열을 NSDate로 변환시켜주는 NSDateFormatter 클래스를 알아 볼 것이다.간단한 코드// date 클래스 생성 NSDate *now = [NSDate date]; // data formatter 생성 & 설정 // formatter를 중복해서 생성하지 않도록 static 으로 // 설정 했다. static NSDateFormatter *defaul..
현 회사에서도 사용하고 싶었으나 이 곳은 라이센스가 없어서 사용하지 못 했었는데, 일부 파일만 배포하는 이슈로 인해 꼭 필요하게 되어(수동보다 훨씬 편하고 안정적이니까) 트라이얼 버젼을 받아서 사용하였다. 30일 용인데, 구매 없이 사용할 수 있는 방법을 알려드리겠습니다. 1. 날짜를 체크하는 파일을 지운다. 맥에서 터미널을 실행합니다. (Luanchpad > 기타> 터미널) Beyond Compare 가 있는 위치로 이동합니다. > cd /Users/{사용자}/Library/Application\ Support/Beyond\ Compare/ Enter Key> ls 엔터 > rm -rf registry.dat 엔터이 방법으로 해당 파일을 삭제하면 30일이 초기화 됩니다. 여기서 문제가 발생합니다. 30..
project setting - bitcode = no upload to appstore - include bitcode
You've implemented -[application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist. You've implemented -[ application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your I..
up vote70down voteacceptedSelect your project, go to Build Settings, search for AppIcon-2 and change it into AppIcon and you will be fine.
self.tableView.beginUpdates() self.tableView.deleteRowsAtIndexPaths([indexPath!], withRowAnimation: UITableViewRowAnimation.Right) self.tableView.endUpdates() 함수를 사용하여 증권 시세의 데이터를 삽입 시키는 작업을 하는데 문제가 생겼다. *** Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-1145.66/UITableView.m:8272010-07-17 22:06:13.601 iPadUIBase[21630:207] *** Terminating app du..
Yes. As of Swift 2.0, if you need the index for each element along with its value, you can use the enumerate() method to iterate over the array. It returns a tuple composed of the index and the value for each item in the array. For example:for (index, element) in list.enumerate() { print("Item \(index): \(element)") }Prior to Swift 2.0, enumerate was a global function.for (index, element) in enu..
First of all initialize of you NSString and NSMutableAttributedString as below.var myString:NSString = "I AM KIRIT MODI" var myMutableString = NSMutableAttributedString()In ViewDidLoadoverride func viewDidLoad() { myMutableString = NSMutableAttributedString(string: myString, attributes: [NSFontAttributeName:UIFont(name: "Georgia", size: 18.0)!]) myMutableString.addAttribute(NSForegroundColorAttr..
Alert views display an informative alert message to the user. Alert views interrupts the user and requires them to stop what they’re doing to choose an action or dismiss the alert. In this tutorial we will display an alert view when the user clicks a button. We will use Swift as the language of this tutorial, so we need Xcode 6. It can be downloaded from Apple's developer portal.Open Xcode and c..
자 오늘 제가 하고 싶은 일은, UITextField에 숫자를 입력할때, ","를 자동으로 집어 넣는것입니다.1111->1,111 이런식으로 표기가 되는것이죠. 일단 값 변경이 일어 나는것을 Catch 하는 방법은 두가지가 있습니다. UITextFieddDelegate의 "textField:shouldChangeCharactersInRage:replacementString:" 을 이용하는 방법이 하나이고, 두번째로, UITextFieldTextDidChangeNotification을 이용하는 것입니다.UIKIT_EXTERN NSString *const UITextFieldTextDidChangeNotification; 우선, Notification을 사용하는 방식은 선호 하지 않는 방법이기도 하고, No..