분류 전체보기

Development/iOS

[iOS] 7월 24일 (토) 개발 일지

1. gesture 추가 특정 UIView를 눌렀을 때 동작을 추가해주고 싶은 상황에서 다음을 이용한다. 참고 let gesture = UITapGestureRecognizer(target: self, action: #selector(self.checkAction)) self.myView.addGestureRecognizer(gesture) @objc func checkAction(sender : UITapGestureRecognizer) { // Do what you want } 2. open safari 코드는 매우 단순하다. 참고 if let url = URL(string: "https://www.hackingwithswift.com") { UIApplication.shared.open(url) }..

Development/iOS

[iOS] 7월 23일 (금) 개발 일지

1. KeyChain 중요한 정보들은 UserDefaults가 아닌 KeyChain에 저장하자?

Development/iOS

[iOS] 7월 22일 (목) 개발 일지

import UIKit class ViewController: UITableViewController { let persons = ["Robert", "Peter", "Dave"] override func viewDidLoad() { super.viewDidLoad() } // MARK: 1번. @IBSegueAction private func showPerson(coder: NSCoder, sender: Any?, segueIdentifier: String?) -> PersonViewController? { guard let indexPath = tableView.indexPathForSelectedRow else { fatalError("Nothing selected!") } return Person..

Development/iOS

[iOS] 7월 21일 (수) 개발 일지

1. ScrollView의 Paging Enabled 이걸로 Swipe Button X Page 구현 중이다. 2. ScrollView 마스터 동적 높이를 어떻게 구현하지 ? 싶었는데, https://stackoverflow.com/a/50944427 그냥 쉽게 생각하면 돼. SubView의 각각 아이템들을 SubView와 leading, trailing, top, bottom 모두 맞춰주면 돼. 3. An internal error occurred. editing functionality may be limited. 갑자기 스토리 보드 화면이 다 검은색으로 나옴. 검색해보니 Project -> Clean Build Folder 후 Xcode 재실행 하면 된다. 4. UILabel Storyboard상에..

Development/iOS

[iOS] 7월 19일 (월) 개발 일지

1. Cell Dynamic Height 구현 우선 Label의 경우 Lines를 0으로 설정한다. 2. Collection Reusable View Collection View를 Scroll View 내부에 넣어도 되나? 고민하던 중, 넣지 말고 Collection Resuable View를 사용하라는 스택오버플로우의 답변을 찾았다. https://stackoverflow.com/a/47174824 CollectionView inside ScrollView So my problem is that every time that I'm trying to scroll, scroll view doesn't work. Only the scroll of the collection view is working. I ..

EUNJI HA
'분류 전체보기' 카테고리의 글 목록 (30 Page)