목록IOS (35)
NewGen
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..
2019-02-28 앱개발중 앱 인증 문제가 발생, 설정->일반->기기관리 메뉴안보일때 나의 아이폰으로 엑스코드에서 디버깅 다운로드가 잘 되다가, 아이폰상에서 앱을 임의로 삭제 후 다시 엑스코드에서 앱 디버깅을 위해 앱을 다운로드 할때 신뢰성 인증 문제가 발생함. 이때 문제가 무엇인가 하면,엑스코드에서 아이폰으로 신뢰성 인증 문제로 인하여 다운로드가 안되니, 아이폰의 설정 -> 기기관리 가서 앱 사용을 허가 하라는 메세지가 나온다. 그런데 문제는,아이폰의 설정 -> 일반 -> 기기관리 항목이 아무리 봐도 찾을 수가 없습니다. 이미 한번 하였기 때문에, 아이폰은 개발 맥의 인증을 완료 하였고, 아이폰 입장에서는 이미 신뢰성 장비 이기 때문이죠. 이때는 엑스코드로 가서, Window -> device and..
메세지 박스 만들기. 경고 문구나, 각종 알람 메세지를 띄우려면 메세지 박스가 필요 합니다.요럴때 써 먹을 수 있는 메세지 박스 하나 구현해 봅니다. 예를 들면 요런거죠 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..