목록전체 글 (65)
develop
1. Info.plist Privacy - Photo Library Usage Description을 추가한다. 2. import Photos 를 import한다. import Photos 3. PHPhotoLibraryChangeObserver PHPhotoLibraryChangeObserver 를 컨트롤러에 등록한다. PHPhotoLibraryChangeObserver 는 이미지가 추가되거나 삭제되거나 수정됬을때 호출이 된다. deinit될때 해제되어야 한다. class ViewController: UIViewController { deinit { PHPhotoLibrary.shared().unregisterChangeObserver(self) } override func viewDidLoad() {..
QLPreviewController를 사용하면 엑셀, 이미지, PDF, 집파일 등을 쉽게 보여줄 수 있다. import QuickLook class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() DispatchQueue.main.async { let previewController = QLPreviewController() previewController.dataSource = self self.present(previewController, animated: true, completion: nil) } } } extension ViewController: QLPreviewControllerDataS..
UDID(Unique Device Identifier) iOS에서 기존에 코드로 볼수 있었던 UDID가 iOS5에서부터 deprecated되었다. UDID(고유 장치 식별자)는 응용 프로그램 설치, 등록 및 MDM(모바일 단말 관리) 등록의 목적을 위해 장치를 식별하는데 사용 되는 계산 된 문자열이다. 위키의 UDID 설명 https://www.theiphonewiki.com/wiki/UDID UDID - The iPhone Wiki A UDID (Unique Device Identifier) is a calculated string that is used to identify a device for the purposes of app installation, registration, and MDM en..
숨김 파일, 폴더 보기: defaults write com.apple.Finder AppleShowAllFiles YES killall Finder 숨김 파일, 폴더 안보기: defaults write com.apple.Finder AppleShowAllFiles NO killall Finder
도형 그리기 1. 라인(Line) class LineView: UIView { override func draw(_ rect: CGRect) { let path = UIBezierPath(rect: rect) UIColor.lightGray.setFill() path.fill() path.close() let linePath = UIBezierPath() linePath.move(to: CGPoint(x: 0, y: rect.height / 2)) linePath.addLine(to: CGPoint(x: rect.width, y: rect.height / 2)) linePath.lineWidth = 6 UIColor.black.set() linePath.stroke() linePath.close() } ..