목록swift (20)
NewGen
xcode version : Version 10.2.1 swift. 1. Change Launch Image Source on Project general setup. 2. Select LaunchScreen.storyboard. 3. Add image to Assets.xcassets. 4. Add Image to LaunchScreen View controller 5. set splash image show time --> add : Thread.sleep(forTimeInterval: 3.0) //3 secs splash delay func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [U..
2019-03-15 XLSX File Open Document Based App . Create Document Based App. 2. Add 2 items on info.plist 3. Configuration “Document Type”Types : org.openxmlformats.spreadsheetml.sheet 4.Build and Run.-Test File Name is “js_test.xlsx” and enabled the file name. 5. When I did touch the file, called “didPickDocumentsAt” in DocumentBrowserViewController class. b. called “presentDocument” in DocumentBr..
2019-03-03 ios with google firebase basic 1 go to : https://console.firebase.google.comselect ios (Just Click IOS Icon)Add appwrite app name.input Bundle ID (This is in Xcode) 4. Go to Step 25. Go to cocoaPods : https://cocoapods.org 6. Open terminal and install cocoaPods 7. You can see gems installed message on terminal. 8. Go to xcode project folder and type ‘pod init’and then you can see “Pod..
메세지 박스 만들기. 경고 문구나, 각종 알람 메세지를 띄우려면 메세지 박스가 필요 합니다.요럴때 써 먹을 수 있는 메세지 박스 하나 구현해 봅니다. 예를 들면 요런거죠 OK 누르면 닫히는거죠. 간단합니다. 참고소스 (swift 4)func alertMsgBox(strTitle : String, strMessage : String) { let alert = UIAlertController(title: strTitle, message: strMessage, preferredStyle: UIAlertController.Style.alert) alert.addAction(UIAlertAction(title: "OK", style: .default, handler: { action in switch action..