xcode 82 [ iOS 9.x -> iOS 10 ] autoresizingMask 설정법 rotate시에 ScrollView의 규격을 그대로 유지하기 위한 설정 방법 [출처] ios UITableView Cell을 dequeueReusableCellWithIdentifier 통해서 조회할때 항상 nil ???|작성자 달망망이 iOS 9.x scrollView.autoresizingMask = .FlexibleWidth | .FlexibleHeight iOS 10 scrollView.autoresizingMask = [.flexibleWidth, .flexibleHeight] 2016. 12. 23. [xcode 8, Swift 3] 경고(Alert)창 띄우기 개발환경xcode 8, Swift 3 코드let dialog = UIAlertController(title: "제목", message: "내용", preferredStyle: .alert) let action = UIAlertAction(title: "확인", style: UIAlertActionStyle.default)dialog.addAction(action) self.present(dialog, animated: true, completion: nil) 버튼을 눌렀을 때, 작업을 하기 원하면 아래와 같이 let action = UIAlertAction(title: "확인", style: UIAlertActionStyle.default){ (action: UIAlertAction) -> Void in.. 2016. 12. 22. 이전 1 다음