목록APP (5)
NewGen

중단에서 응용 프로그램을 방지 할 수 있습니다. 관련된 API는 매우 작지만 여전히주의해야 할 사항이 많이 있습니다. 이름 백그라운드 작업 은 다소 부적절합니다. 특히, beginBackgroundTask(expirationHandler:)실제로 백그라운드 작업의 모든 종류의를 시작하지 않고, 그 시스템 알려주 는 앱이 백그라운드에있는 경우에도 계속하려면 몇 가지 진행중인 작업을 시작합니다. 해당 작업을 만들고 관리하려면 코드를 작성해야합니다. 따라서 백그라운드 작업 API를 "Do n't suspend me"주장을 제기하는 것으로 생각하는 것이 가장 좋습니다. 시작하는 모든 백그라운드 작업을 종료해야합니다. 그렇게하지 않으면 워치 독에 의해 앱이 종료됩니다. 이러한 이유로 시작하는 각 백그라운드 작업에..
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..
GoGo MartAppstore : GoGoMart OS : iOSversion 1.0 소개 ( Introduce GoGoMart )마트에서 과소비를 막아줍니다. (It will prevent to spend a lot of money at shopping.)부자가 됩니다.(You will be rich) 사용법 (Usage)상품명 입력.(Enter product name.)가격 입력.(Enter price.)수량 입력(기본 수량 1 세팅).(Enter number of product which you want to buy. Default is 1) 감사합니다. Thank you!
메세지 박스 만들기. 경고 문구나, 각종 알람 메세지를 띄우려면 메세지 박스가 필요 합니다.요럴때 써 먹을 수 있는 메세지 박스 하나 구현해 봅니다. 예를 들면 요런거죠 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..