티스토리 뷰
iOS(Swift 4.0) 기본 정리(2017.09.26)
0. StoryBoard, ViewController, Info.plist에서 storyboard… 제거
1. AppDelegate
window = UIWindow(frame: UIScreen.main.bounds)
//bound : 넘어가는 크기까지, frame : 디바이스 화면 자체의 크기
window?.rootViewController = FirstViewController()
//push 방식
window?.rootViewController = UINavigationController(rootViewController: FirstViewController())
//navigation 방식
window?.makeKeyAndVisible()
//이 코드가 없으면 화면이 안나온다.
2. 화면 전환
Present : A의 view 위에 B라는 view를 덮어 올리는것. Dismiss로 B를 지울 수 있음. 부모 view를 접근가능.
응용하여 pop up에 사용 가능. (view의 background 색상과 opacity를 적용)
//Present
self.present(SecondViewController(), animated: true, completion: nil)
//Dismiss
self.dismiss(animated: true, completion: nil)
Push/Pop : 가장 많이 사용. NavigationBar를 통해 사용하면 Back Button이 등장. 이전의 경로들을 가지고 있음. 완전히 A의 view를 없애서 부모 view를 접근불가능
//Push
self.navigationController?.pushViewController(SecondViewController(), animated: true)
//Pop : pop을 하려는 SecondViewController에 작성
self.navigationController?.popViewController(animated: true)
Segue : StoryBoard에서 사용하는 방식.
2. Tip
Controller 띄우기
self.present(Controller_Name, animated: true, completion: nil)
String의 Nil or WhiteSpace
C# : String.IsNullOrWhiteSpace
extension String {
func trim() -> String {
return self.trimmingCharacters(in: CharacterSet.whitespaces)
}
func NilOrEmpty()->Bool{
if(self.trim().isEmpty){return true}
else{return false}
}
}
Alert Or ActionSheet 띄우기
//Declare Alert Controller
let alertController = UIAlertController(title: "알림", message: "알림창입니다", preferredStyle: .alert)
//Declare Action
let doneAction = UIAlertAction(title: "확인", style: .default, handler: {(UIAlertAction) in print("확인되었습니다")})
let cancelAction = UIAlertAction(title: "취소", style: .default, handler: nil)
//Add Action
alertController.addAction(doneAction)
alertController.addAction(cancelAction)
//Present Alert Controller
self.present(alertController, animated: true, completion: nil)
Image Load : [Assets.xcassets]에 사용할 resource들을 넣어야한다.
UIImage(named: “image_name”)
'iOS(swift)' 카테고리의 다른 글
[Swift 4] Fakebook 만들기 - 3. AutoLayout, Dynamic(AutoSize) CollectionView Cell, Rounded Image (0) | 2017.11.25 |
---|---|
[Swift 4] Fakebook 만들기 - 2. CollectionViewController, NavigationBar (0) | 2017.11.25 |
[Swift 4] Fakebook 만들기 - 1. Xcode 라이브러리 (0) | 2017.11.25 |
자주 사용할 코드 (0) | 2017.11.02 |
iOS(Swift 4.0) 기본 정리(2017.10.21) (0) | 2017.11.02 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- CollectionView
- 타일링
- 생활코딩
- BFS
- 데이터 바인딩
- BOJ
- dfs
- UIView Animation
- listview
- Grid
- Cell Animation
- FEED
- XAML
- 백준
- Fakebook
- 스택
- C++
- 문자열
- Custom Cell
- WPF
- DP
- CustomCollectionViewCell
- Add TapGesture
- 백준온라인
- MVVM
- 코딩야학
- command
- 객체
- 그래프
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함