일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스마트폰
- 페이백
- loop
- setting
- 샘플
- UITableView
- 신도림
- 아이폰7
- push
- 해몽
- swift3
- IOS
- UIView
- Check
- 포켓몬 GO
- LG유플러스
- Example
- simulator
- Xcode
- afterdelay
- 신도림 테크노마트
- 앱스토어
- swift
- GCD
- 공략
- error
- Bitcode
- 포켓볼
- 보라카이
- 얻는법
- Today
- Total
목록IOS (16)
도래울
"Reset Content and Settings" from iOS Simutalor menu options and launching simulator after Quitting solved my issue.
extension NSMutableAttributedString { static public func multicolorTextAttribute(fullText : String, colorText : String, fontColor : UIColor, label : UILabel) -> NSMutableAttributedString { var mutableString = NSMutableAttributedString() let range = fullText.rangeOfString(colorText) let index: Int = fullText.startIndex.distanceTo(range!.startIndex) mutableString = NSMutableAttributedString(string..
1. 중요 용어 정리. - Provider란? 단말로 정보를 제공해 주는 역할을 하는 시스템(=서비스, 서버) 입니다. 예를들어 카카오톡, 페이스북등이 있습니다. - APNS란? 애플사의 원격 알림 서비스(Apple Push Notification Service)를 말합니다. [그립2]에서는 push 서비스를 위한 애플사의 서버라고 보시면 됩니다. - DeviceToken란? 푸시서비스에서 단말기기를 구별하기 위한 ID 라고 생각하시면 됩니다. 예를들어 3ebd7dc97074f2f05e62eb936c4b99c977355a095a6844459dfa6aa0b7b98b0 이런 스트링값입니다. 2. 단말에서의 구현. 단말에서 APNS로 부터 DeviceToken을 가져오려면 아래의 함수들를 실행시키면 됩니다. ..
BRYXBanner is a great new library by Harlan Haskins for displaying "dropdown" notifications banners. It has a very straightforward API, while remaining extremely flexible. Let's take a look at some different ways to use it.Momentarily show a banner. By default banners are dismissed on tap, swipe, or after the duration has elapsed.let banner = Banner( title: "New Mission Alert", subtitle: "New mi..
UITableView is a subclass of UIScrollView, so you can also use:[mainTableView scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:YES];Or[mainTableView setContentOffset:CGPointZero animated:YES];And in Swift:mainTableView.setContentOffset(CGPointZero, animated:true)And in Swift 3:mainTableView.setContentOffset(CGPoint.zero, animated: true)
objective cNSLog(@"%@",[self.navigationController.viewControllers objectAtIndex:self.navigationController.viewControllers.count-2]); swift let n: Int! = self.navigationController?.viewControllers?.count let myUIViewController = self.navigationController?.viewControllers[n-2] as! UIViewController