Programming(132)
-
status bar 색상 변경
* AppDelegate func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { // Override point for customization after application launch. UIApplication.sharedApplication().valueForKey("statusBar")?.setValue(UIColor.redColor(), forKey: "foregroundColor") return true } - swift 3.0// let statWindow = UIApplication.shared.value(forKey:"st..
2016.09.05 -
collectionview overlap 되는 이미지와 버튼 기기별 조정(?)
아래와 같은 이미지를 만들려고 한다. storyboard에 비스무리하게 만들었다. layout을 맞춰주기 위해서 아래와 같이 size을 임의로 조절 하였다. func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize { let screenSize = UIScreen.mainScreen().bounds let screenHeight = screenSize.height var width: CGFloat? = nil var height: CGFloat? = nil // 아래 CG..
2016.09.02 -
app심사 및 itunes connect 사용법 링크
https://developer.apple.com/library/mac/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide_ko/Chapters/About.html#//apple_ref/doc/uid/TP40016320-CH1-SW1
2016.09.01 -
tabbar에서 tableview 사용시 마지막 로우가 tabbar에 가려질 때
http://stackoverflow.com/questions/3463157/tab-bar-covers-uitableviews-last-cell Under Bottom Bars 의 체크를 해제 한다.
2016.08.30 -
한글/영문/숫자 순으로 정렬하기.
var section1 = ["100","1","a","나","ㄱ","2","k","ㅎ","10","가"] let order = section1.sort() { (s1, s2) -> Bool in if(s1 = "A" && s2 >= "A" && s1 "z" && s2 > "z") { // 둘 다 한글 이면 return s1.localizedStandardCompare(s2) == NSComparisonResult.OrderedAscending } else { //둘 중에 하나라도 ..
2016.08.29 -
[Firebase] firebase/crash 설정
해석하는데 어려움을 겪음..영어 못하는게 죄..ㅠㅠ나를 더 화나게 한 것은 한글 지원이 되었다는거...ㅡㅡ^https://firebase.google.com/docs/crash/ios cocoapods 설정pod 'Firebase/Crash' 1. Download a service account key to authenticate your uploads:Go to the Firebase console and open your Firebase project.Click settings and select Permissions.On the Permissions page, select Service Accounts from the left menu.Click Create service account.Name t..
2016.08.27