8월, 2018의 게시물 표시

사진 가져오기 (UIImagePickerController)

이번에는 사진을 카메라로 찍거나 앨범에서 가져와서 image를 표현하는걸 해보자. 아래와 같이 실행된다. ====================================================================== 1. ImageView 생성 2. UIImagePickerController 생성 3. ImageView에 선택된 Image 표시하기 ====================================================================== 1. ImageView 생성  사진을 표현하기 위한 UIImageView를 생성하고 이 ImageView를 tap 하였을 때 특정 event가 실행되게 한다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 class ViewController: UIViewController {           var  sampImage: UIImageView !      override   func  viewDidLoad() {         super.viewDidLoad()          // (1) UIImageView 생성         sampImage  =  UIImageView()         sampImage.frame.size  =  CGSize(width:  self .view.frame.width / 3   *   2 , height:  self .view.frame.height  /   3   *   2 )         sampImage.center  =  CGPoint(x:  self .view.frame.width  /   2 , y:  self .view.frame.height  /   2 )         sampImage.contentMode  =

간단한 data 저장하기 (UserDefualts vs Custom Plist)

간단한 data를 저장하는 방법에 대해 알아보자 1. UserDefualts : 가장 간단한 data를 간단하게 입력하는 방법이다. 2. Custom Plist : 간단한 data를 직접 생성한 Plist 파일에 저장한다. UserDefualts 보다 조금더 데이터를 나누어서 관리하고자 할 때 적합한 것 같다. 앱을 최초 생성하면 info.plist가 있는데 이런 data(NSDictionary)를 만들수 있고 그 data를 읽을 수 있다. 또는 그냥 string으로 txt 파일로 저장할 수도 있다(저장하는 파일 이름에 따라). 간단하게 코드로 살펴보면 1. UserDefualts // Userdefualts 사용 //(1)저장할 장소 let  userPath  =  UserDefaults.standard // (2)data 저장 userPath.set( "min" , forKey:  "name" ) userPath.set([ 3 , 1 , 4 ], forKey:  "array" ) userPath.synchronize() // (3)data 가져오기 let  name  =  userPath.string(forKey:  "name" ) let  array  =  userPath.array(forKey:  "array" ) Colored by Color Scripter cs (1) 저장할 곳의 이름을 설정한다. 저장장소는 한곳이라 class 함수로 지정된다. (2) 저장장소에 key값으로 data를 저장한다. 저장할 수 있는 data는 string,Int,Double,Base64 type, Bool, Array, Dictionary 등등을 저장할 수 있다. 이때 synchronize()로 동기화 하여 여러곳에서 저장할 때의 충돌을 피해야 한다. (3) 가져오고 싶은 data type에 맞게 자료