일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- swift3
- 스마트폰
- 아이폰7
- 보라카이
- 신도림
- GCD
- Example
- simulator
- swift
- afterdelay
- UITableView
- 포켓볼
- Xcode
- push
- IOS
- UIView
- 포켓몬 GO
- Bitcode
- Check
- 해몽
- LG유플러스
- 샘플
- 신도림 테크노마트
- setting
- error
- 얻는법
- 앱스토어
- loop
- 페이백
- 공략
- Today
- Total
목록개발/iOS (97)
도래울
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..
GSImageViewerControllerDemoExampleTo show normal image viewer controller:let imageInfo = GSImageInfo(image: someImage, imageMode: .AspectFit) let imageViewer = GSImageViewerController(imageInfo: imageInfo) navigationController?.pushViewController(imageViewer, animated: true)To show zoom transition image viewer controller:let imageInfo = GSImageInfo(image: someImage, imageMode: .AspectFill, image..
만약 기존 방식대로 CLLocationManager를 사용하는 경우, 혹은 별도의 코드는 없지만 인터페이스 빌더나 스토리보드에서 맵뷰(MKMapView)를 올려놓고 사용자 위치 탐색(Update User Location) 기능을 사용하는 경우 위치 탐색이 제대로 되지 않고 아래와 같은 로그메시지가 출력된다면 이 문제에 해당한다. Trying to start MapKit location updates without prompting for location authorization. Must call -[CLLocationManager requestWhenInUseAuthorization] or -[CLLocationManager requestAlwaysAuthorization] first.사실 에러 내용만..