아이폰 개발(129)
-
Swift 개발 관련 팁 모음
static func getDayOfWeek(date: Date) -> String { let formatter = DateFormatter() formatter.dateFormat = "EEEEEE" formatter.locale = Locale(identifier:"ko_KR") let convertStr = formatter.string(from: date) return convertStr } https://effectivecode.tistory.com/1621 Swift 지정된 날짜(Date)의 요일 구하기 요일을 구하는 방식이 여러가지 다양하게 있는데 검색을 하다 보니 여간 복잡스러운 방법이 있는 경우도 있었다. 좀 더 심플하게 구성할 수 있는 방법이 없을까? 고민하다 포멧터를 이용해서 출 ef..
2022.10.30 -
강제로 Landscape 모드로 전환
어이없게 너무 간단하다 ㅠㅠ // 가로전환을 위해 사용 ( landscape / Left / Right 가능 ) override var supportedInterfaceOrientations: UIInterfaceOrientationMask { return .landscapeRight } https://leechamin.tistory.com/411 [Swift] 넷플릭스 화면 따라만들기 (3) 저번까지는 searchAPI를 구현해봤었다. 이제는 클릭 이후에, 영상을 가져오고/틀어주고, 화면전환까지 되도록 구현해보자. 그러기 위해서는 먼저 영상을 갖고 있는 movie라는 객체가 있어야 하고 영 leechamin.tistory.com
2022.09.13 -
Swift HealthKit 연동
For swift 4.2 1) Get HealthKitPermission import HealthKit func getHealthKitPermission() { delay(0.1) { guard HKHealthStore.isHealthDataAvailable() else { return } let stepsCount = HKObjectType.quantityType(forIdentifier: HKQuantityTypeIdentifier.stepCount)! self.healthkitStore.requestAuthorization(toShare: [], read: [stepsCount]) { (success, error) in if success { print("Permission accept.") } e..
2022.05.31 -
Swift의 TextView에서 toolbar를 이용한 버튼 처리
TextView에서 키보드가 활성화된 상태에서, 같은 상위 뷰에 속해있는 버튼들이 처리되지 않음. 그래서 키보드가 활성화되었을때에는 다음과 같이 툴바를 사용하는 방법으로 다른 버튼들의 기능을 처리하였음 https://stevenpcurtis.medium.com/enabling-the-done-button-to-a-uitextview-967499f392ed Enabling the done button to a UITextView Are you sure that you want to do that? stevenpcurtis.medium.com https://dongkyprogramming.tistory.com/10 iOS Keyboard 상단에 Done(완료) 버튼 추가하기 이번 포스팅은 iOS에서 retu..
2022.02.28 -
Swift에서 ViewController를 닫고 다른 ViewController를 실행
유용한 팁인데 늘 까먹는다. guard let pvc = self.presentingViewController else { return } self.dismiss(animated: true) { pvc.present(SecondViewController(), animated: true, completion: nil) } https://developer-fury.tistory.com/56 [Swift] dismiss 한 뒤 바로 present 하는 방법 안녕하세요 :] 간혹 개발을 하다 보면 현재 화면을 닫음과 동시에 다른 화면을 열어야 하는 경우가 생기더라고요. 그 경우도 여러 가지 케이스가 있는데 제가 경험한 케이스를 공유해보도록 하 developer-fury.tistory.com
2022.02.10 -
Swift용 Carousel View
개인적으로는 이렇게 잘 만든 소스를 보는 것은 늘 기분 좋은 일이다. https://medium.com/swlh/swift-carousel-759800aa2952 Carousel View in Swift Create your own custom carousel view for onboarding flows medium.com https://github.com/blorenzo10/carousel GitHub - blorenzo10/carousel: Simple and flexible customizable carousel onboarding Simple and flexible customizable carousel onboarding - GitHub - blorenzo10/carousel: Simple a..
2022.02.10