반응형

ios 16

[iOS - Swift] (수정중)Album Photo List 갖고오기(1) - PhotoKit

이번엔 Device의 앨범에 저장되어있는 사진, 영상등을 갖고오기 위한 PhotoKit에 대해 알아보려 합니다. iOS에서 기본 사진앱이 관리하고 있는 비디오와 사진 데이터를 가져고오거나 편집, 삭제 등을 하기 위해서는 PhotoKit을 이용해야 합니다. PhotoKit은 iOS, macOS, tvOS에서 동일하게 직접적으로 사진과 동영상을 관리하도록 도와줍니다. Work with image and video assets managed by the Photos app, including those from iCloud Photos and Live Photos. iCloud Photos와 Live Photos를 포함하는 Photos 앱에서 관리하는 이미지와 비디오 에셋으로 작업합니다. 여기서 모든 Phot..

[iOS - Reject] Guideline 4.0 - Design

저번 금요일에 올린 어플리케이션이 리젝을 당했습니다..(iPad, iPhone모두) 내용을 보니 localized String이 문제였네요. Introduction - Sign in with Apple - Human Interface Guidelines - Apple Developer Sign in with Apple Sign in with Apple provides a fast, private way to sign into apps and websites, giving people a consistent experience they can trust and the convenience of not having to remember multiple accounts and passwords. Display..

[iOS]Gradient 관련 코드(정리 전 원본 코드)

//UIButton에 Gradient적용 let gradientForLogin = CAGradientLayer() gradientForLogin.frame = CGRect(x: 0, y: 0, width: self.view.frame.size.width * (248/1024), height: self.BTNLogin.frame.size.height) //self.BTNLogin.bounds//CGRect(origin: .zero, size: self.BTNLogin.frame.size) gradientForLogin.colors = gradientColors gradientForLogin.startPoint = CGPoint(x: 0, y: 0.5) gradientForLogin.endPoint = CG..

반응형