Mobile App/iOS 15

[Swift] Method Dispatch - 정적 vs 동적 디스패치

Method Dispatch는 프로그램이 어떻게 해당 메소드를 실행할지 정하는 것이다. Method Dispatch에는 Direct(Static 이라고 부르기도 한다.) / Dynamic 방식이 있으며, Dynamic Dispatch 방식에는 Table Dispatch / Message Dispatch 방식이 있다. 해당 Dispatch는 swift에만 있는 것이 아니라 모든언어에 있다. swift가 컴파일되고 해당 메소드르 부르는 방식에는 Direct, Table, Message 총 3가지가 있다고 보며 된다. 많은 언어들이 Direct나 Table Dispatch를 지원한다. Java는 Table dispatch를 기본적으로 사용한다. c++는 기본적으로 Direct dispatch를 이용한다. 하지..

Mobile App/iOS 2020.01.12

iOS - UI test 한번에 하기

시뮬레이터로 하나씩 검사하기 귀찮을 때가 있을 것이다. 아래와 같은 명령어를 사용하면 한번에 할 수 있다. # 1 xcodebuild test -scheme MyApp \ -destination "plaform=iOS,name=iPhone 8" \ -destination "platform=iOS,name=iPhone 8 Plus" # 2 xcodebuild test -project MyAppProject.xcodeproj -scheme MyApp -destination 'platform=OS X,arch=x86_64' -destination 'platform=iOS,name=Development iPod touch' -destination 'platform=Simulator,name=iPhone,OS=9..

Mobile App/iOS 2019.11.24

Swift 4 - CustomView (메모리 누수 해결하기.)

Swift 4 - CustomView (메모리 누수 해결하기.)Memory leak 해결방법까지 같이 넣겠습니다.필요한 파일CustomView.swiftCustomView.xib[1] CustomView.swift 파일 생성class CustomView: UIView { class func instanceFromNib() -> UIView { return UINib(nibName: "CustomView", bundle: nil) .instantiate(withOwner: nil, options: nil)[0] as! UIView } }[2] CustomView.xib 파일 생성 후 설정.Custom Class -> Class 에다가 CustomView 입력.[3] 버튼 클릭시 화면전환을 하고 싶으면. 버..

Mobile App/iOS 2019.03.09

스토리 보드 분리할 경우 생기는 오류 해결 방법(iMessage)

스토리 보드 분리할 경우 생기는 오류 해결 방법(iMessage)iMessage extendsion을 만들 때, Refector to storyboard할 시 오류가 생긴다.Did not find storyboard named "help" referenced from MainInterface.storyboard다음과 같은 오류가 생길경우 ..분리된 storyBoard에서 오른쪽 사이드 바로 간다.맨왼쪽 [A4용지 모양] 누른다.Taget Membership에서 MessageExtension을 체크 해준다.

Mobile App/iOS 2019.03.09

Swift - 4 image 불러오기, url image 불러오기

Swift - 4 image 불러오기, url image 불러오기image 불러오기 UIImage var uiImageView = UIImageView() var image: UIImage = UIImage(named: "sdk")! uiImageView = UIImageView(image: image) uiImageViewimage url로 불러오기 UIImagelet url = URL(string: "http://verona-api.municipiumstaging.it/system/images/image/image/22/app_1920_1280_4.jpg") let data = try Data(contentsOf: url!) uiImageView.image = UIImage(data: data) ui..

Mobile App/iOS 2019.03.09

Swift 4 - 영상처리 관련 코드 주석

Swift 4 - 영상처리 관련 코드 주석// 합치기위한 let composition = AVMutableComposition() // 비디오 불러오기 let vidAsset = AVURLAsset(url: url) // get video track let videoTrack = vidAsset.tracks(withMediaType: AVMediaTypeVideo)[0] // get audio track let audioTrack = vidAsset.tracks(withMediaType: AVMediaTypeAudio)[0] // CMTimeRangeMake 시간을 설정함. let vid_timerange = CMTimeRangeMake(kCMTimeZero, duration) // 트랙을 추가함. 비디..

Mobile App/iOS 2019.03.09

Swift 4 - NSMutableAttributedString을 이용하여 Outline text 만들기

NSMutableAttributedString 을 이용하면 Outline 효과를 줄 수 있다.NSAttributedStringKey let myString = "조심해라" // 1번 아웃라인 let attributes: [NSAttributedStringKey : Any] = [ NSAttributedStringKey.strokeColor: UIColor.red, NSAttributedStringKey.foregroundColor: UIColor.black, NSAttributedStringKey.strokeWidth: -3.0, NSAttributedStringKey.font: UIFont(name: "fontName", size: 80) ] ​ let customizedText = NSMutableA..

Mobile App/iOS 2019.03.09