UIKeyboardFrameBeginUserInfoKey, UIKeyboardFrameEndUserInfoKey
func adjustKeyboardHeight(_ show:Bool, _ notification:NSNotification){ if let keyboardFrame = (notification.userInfo?[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.cgRectValue { var userInfo = notification.userInfo! let animationDuration = userInfo[UIKeyboardAnimationDurationUserInfoKey] as! TimeInterval let changeInHeight = ( keyboardFrame.height ) * (show ? 1 : -1) print(keyboardFrame) if #av..
iOS/Debugging
2017. 11. 8. 16:22
Xcode Archiving이후 Organizer에 나타나지 않는 문제
기존 프로젝트 BuildSetting의 Installation Directory 는 @executable~ 이었고 아카이빙을 해도 Organizer 리스트에 정상적으로 등록되지 않는 문제가 발생했다 아래 링크를 통해서 해결. https://stackoverflow.com/questions/7226097/building-archive-in-xcode-does-not-create-archive "Installation Directory" --> /Applications
카테고리 없음
2017. 11. 7. 13:14