전체 글(371)
-
[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 -
collectionView cell 이동
버튼을 클릭했을 경우 화면에 해당 collectionViewCell 위치로 이동할 수 있게 한다. @IBAction func time00(sender: AnyObject) { self.collectionview?.scrollToItemAtIndexPath(NSIndexPath(forItem: 0, inSection: 0), atScrollPosition: .Left, animated: true) } forItem 은 이동하는 셀로우 : IndexPath.row 라고 생각하면 될 듯..atScrollPosition 은 화면에 어떤 위치를 기준으로 삼아서 해당 셀을 보여 줄 것인지 : .Top, .Bottom, .Left, .Right
2016.08.04 -
가로모드 일 경우 버튼 사이즈 조정
http://stackoverflow.com/questions/28148843/ios-autolayout-two-buttons-of-equal-width-side-by-side
2016.08.04