개발/swift29 빈공간 터치시 키보드 내리기 override func touchesBegan(touches: Set, withEvent event: UIEvent?) { userIDField.resignFirstResponder() userPWField.resignFirstResponder() } 2016. 8. 31. UIViewController에서 Table사용하기 UIViewController에서 Table사용하는 법은 UITableViewController에서 사용하는 것과 다를 바가 없다.그저 override키워드를 빼는 것일뿐! import UIKit class BookListController : UIViewController{ let list = (try! Realm().objects(User.self).last?.products)! //사용자의 보관함 목록을 불러옴 override func viewDidLoad(){ super.viewDidLoad() } func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return self.list.count //갯수반.. 2016. 8. 31. swift 사파리로 링크열기 UIApplication.sharedApplication().openURL(NSURL(string: "http://naver.com/")!) 을 입력해 주면 간단히 해결! 2016. 8. 24. navigation bar에 로고 넣기(이미지 삽입) navigation bar에 로고를 넣고싶다면 1) 로고의 이미지 크기가 적절치 않을경우 override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. let imageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 20, height: 20)) imageView.contentMode = .ScaleAspectFit let image = UIImage(named: "YOURIMAGE") imageView.image = image navigationItem.titleView = imageView } 2) 로고의 이미지 크기를 적절하게 제작하였을 .. 2016. 8. 23. 이전 1 ··· 3 4 5 6 다음 반응형