본문 바로가기

iOS

iOS13 Beta 6 1. downLoad Link https://developer.apple.com/download/ 로그인 - Apple idmsa.apple.com 2. release note https://developer.apple.com/documentation/ios_ipados_release_notes/ios_ipados_13_beta_6_release_notes?language=objc iOS & iPadOS 13 Beta 6 Release Notes | Apple Developer Documentation Article iOS & iPadOS 13 Beta 6 Release Notes Update your apps to use new features, and test your apps against API ..
iOS13 Beta 5 1. downLoad Link https://developer.apple.com/download/ 로그인 - Apple idmsa.apple.com 2. release note https://developer.apple.com/documentation/ios_ipados_release_notes/ios_ipados_13_beta_5_release_notes?language=objc iOS & iPadOS 13 Beta 5 Release Notes | Apple Developer Documentation Article iOS & iPadOS 13 Beta 5 Release Notes Update your apps to use new features, and test your apps against API ..
[Xcode] failed to find or create execution context for description 1. open Terminal 2. sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService 3. xcode reboot
iOS 12.4 Releases 22일(현지시간) 애플이 아이폰과 아이패드에 iOS 12.4 정식 업데이트를 출시했다. iOS 12.4 업데이트는 이전 아이폰에서 새로운 아이폰으로 데이터를 직접 전송하는 아이폰 마이그레이션 기능이 추가됐으며 애플워치의 워키토키 앱에 대한 보안 수정 사항을 포함하며 워키토키 기능을 다시 활성화한다. 또한, 이번 업데이트는 일본 및 대만에서의 홈팟(HomePod) 사용을 지원하며 아이폰 및 아이패드의 보안이 향상됐다. iOS 12.4 업데이트는 설정->일반->소프트웨어 업데이트를 통해 설치할 수 있다. https://developer.apple.com/documentation/ios_ipados_release_notes/ios_12_4_release_notes?language=objc
iOS13 Beta 4 다운로드 링크 : https://developer.apple.com/download/#ios-restore-images-iphone-new 로그인 - Apple idmsa.apple.com 업데이트 내용 : https://developer.apple.com/documentation/ios_ipados_release_notes/ios_ipados_13_beta_4_release_notes?language=objc iOS & iPadOS 13 Beta 4 Release Notes | Apple Developer Documentation Article iOS & iPadOS 13 Beta 4 Release Notes Update your apps to use new features, and test your ..
[ETC]유니코드 한글 변환 iOS 한글로그 한글 -> 유니코드 결과 : 유니코드 -> 한글 결과 :
[swift] UITextView글자수 제한(붙여넣기) func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool { let newText = (textView.text as NSString).replacingCharacters(in: range, with: text) let numberOfChars = newText.count if(numberOfChars > 200){ let leng = 200 - textView.text.characters.count textView.text = (textView.text as NSString).replacingCharacters(in: range, with: text.substri..
[swift] 정규식 정규식 체크 func checkString(newText:String, filter:String = "[a-zA-Z0-9가-힣ㄱ-ㅎㅏ-ㅣ\\s]") -> Bool { let regex = try! NSRegularExpression(pattern: filter, options: []) let list = regex.matches(in:newText, options: [], range:NSRange.init(location: 0, length:newText.count)) if(list.count != newText.count){ return false } return true }