Programming/Swift(93)
-
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 -
[AdMob] 내가 만든 앱에 배너광고 넣기
https://firebase.google.com/docs/admob/ios/quick-start * Podfilesource 'https://github.com/CocoaPods/Specs.git' platform :ios, '9.0' use_frameworks! pod 'Firebase/Core' pod 'Firebase/AdMob' target 'Demo' do pod 'Firebase' end $ pod install * AppDelegate.swift import Firebase import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func applica..
2016.08.26 -
UIViewController 라이프사이클 다이어그램
http://stackoverflow.com/questions/22214843/ios-7-difference-between-viewdidload-and-viewdidappear/22215127#22215127 전부 이해는 못하더라도 전체적인 흐름정도는 익히는 것도...
2016.08.22 -
Multi Return Values
func MultiReturn() -> (String, Int, NSDate) { let name = "MultiReturn" let age = 25 let date = NSDate() return (name, age, date)} print(MultiReturn().0)print(MultiReturn().1)print(MultiReturn().2)
2016.08.12