본문 바로가기
TableCell 선택시 페이지 이동 Segue StoryBoard에 TableView를 만들었긴했는데cell의 경우 xib형태로 따로 빼서 만들었다 그럴경우 어떻게 연결해야하는가?let tbv = storyboard!.instantiateViewController(withIdentifier: "detailViewController")self.show(tbv, sender: nil) Segue http://theeye.pe.kr/archives/2292 let tbv = storyboard!.instantiateViewController(withIdentifier: "detailViewController") as! DetailViewController tbv.idx = mainTableArray[mainTableView.indexPathForSelec.. 2018. 1. 17.
ios App Icon 사이즈 https://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/ 앱 아이콘 사이즈Device or contextIcon sizeiPhone180px × 180px (60pt × 60pt @3x)120px × 120px (60pt × 60pt @2x)iPad Pro167px × 167px (83.5pt × 83.5pt @2x)iPad, iPad mini152px × 152px (76pt × 76pt @2x)App Store1024px × 1024px (1024pt × 1024pt @1x) Spotlight, Settings, and Notification IconsDeviceSpotlight icon sizeiPhon.. 2018. 1. 17.
TableVIew에서 이미지사용시 이미지변경이 느릴때 prepareForReuse() prepareForReuse()https://developer.apple.com/documentation/uikit/uitableviewcell/1623223-prepareforreuse 설명이 잘되어있는 사이트https://medium.com/ios-seminar/why-we-use-dequeuereusablecellwithidentifier-ce7fd97cde8e class BestTableViewCell: UITableViewCell { // MARK: - Instance Vars @IBOutlet weak var mainStackView: UIStackView! @IBOutlet weak var titleLabel: UILabel! @IBOutlet weak var mainImageView: UI.. 2018. 1. 17.
UITable 아ㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏㅏ레이아웃잡기가 너무 거지같다. https://developer.apple.com/documentation/uikit/uitableview ----table headershttps://www.youtube.com/watch?v=9ZBREmCCJXA Accessing Header and Footer Views 왜 TableViewHeader부분을 검색했을까?기본적으로 디자인일 잡을때 상단 NavigationBar밑에Carousel을 통해서 움직이는 슬라이더를 만들며그밑에 버튼3개그후 TableView를 통해서 상품을 움직이려고 했다. 해당 작업이 끝난후 보니 내가 원하는부분은Carousel과 버튼 그리고 TableView부분 전체가 스크롤이 되어야했다 하지만 작업후 보.. 2018. 1. 12.
배열 var names:Arrary = [] 위의 선언과 동일한 내용 var names:[String] = [] var name = [String]() 2018. 1. 11.
The resource could not be loaded because the App Transport Security policy requires the use of a secure connection rror Domain=NSURLErrorDomain Code=-1022 "The resource could not be loaded because the App Transport Security policy requires the use of a secure connection." HTTPS로 통신을 하지 않을경우 가능하게 풀어줘야한다. https://ste.vn/2015/06/10/configuring-app-transport-security-ios-9-osx-10-11/ http://blowmj.tistory.com/entry/iOS-iOS9-App-Transport-Security-%EC%84%A4%EC%A0%95%EB%B2%95 App-Transport-Security설정 Info.pilist N.. 2018. 1. 11.
HTTP 통신 , JSON 처리 pod 'Alamofire' pod 'AlamofireImage' pod 'SwiftyJSON' pod 'Alamofire-SwiftyJSON' https://github.com/Alamofire/Alamofirehttps://github.com/Alamofire/AlamofireImagehttps://github.com/SwiftyJSON/SwiftyJSONhttps://github.com/SwiftyJSON/Alamofire-SwiftyJSON 2018. 1. 11.
키보드관련 {//키보드 노티피케이션NotificationCenter.default.addObserver(self, selector : #selector(keyboardWillShow(noti:)),name:NSNotification.Name.UIKeyboardWillShow,object:nil)NotificationCenter.default.addObserver(self, selector : #selector(keyboardWillShow(noti:)),name:NSNotification.Name.UIKeyboardWillHide,object:nil)}//키보드가 올라올때func keyboardWillShow(noti:NSNotification){//키보드 높이let notiInfo = noti.userInfo! .. 2018. 1. 11.
자주나오는 키워드 as : 형변환관련What's the difference between “as?”, “as!”, and “as”?https://stackoverflow.com/questions/29637974/whats-the-difference-between-as-as-and-as nil : nil의 개념 2018. 1. 11.