본문 바로가기
iOS

[Swift] iOS 개발과 Swift 관련 참고 및 정리

by 건복치 2020. 3. 4.
반응형

자동 Indent

ctrl + i

 

UIBarButtonItem

 

*네비게이션바 왼쪽 버튼 텍스트로 만들기

self.navigationItem.leftBarButtonItem = UIBarButtonItem(title: "LEFT", style: .done, target: nil, action: nil)

 

* 네비게이션바 오른쪽 버튼 이미지로 만들기

let rightButtonImage = #imageLiteral(resourceName: "camera")

self.navigationItem.rightBarButtonItem = UIBarButtonItem(image: rightButtonImage, style: .plain, target: self, action: #selector(addTapped))

 

Swift Naming Guide

https://stackoverflow.com/questions/52347745/ios-naming-conventions-for-buttons-labels-etc

 

iOS naming conventions for buttons/labels etc

I am relatively new to app development and I was curious if there was any naming conventions to iOS app dev. I found this guide https://developer.apple.com/design/human-interface-guidelines/ios/con...

stackoverflow.com

 

ERROR 해결 - 'UIScene' is only available in iOS 13.0 or newer

https://cishome.tistory.com/151

 

[iOS] 'UIScene' is only available in iOS 13.0 or newer

'UIScene' is only available in iOS 13.0 or newer Xcode 11 에서 새 프로젝트를 만들면 iOS13 의 배포 대상 프로젝트로 설정됩니다. Xcode 11 에서 13 이하버전을 지원하기 위해서는 내용을 약간 추가해주어야..

cishome.tistory.com

 

Parse XML in iOS with Swift - Build a RSS News Reader App

https://www.youtube.com/watch?v=fP69LI5bZlg

 

 

App Transport Security has blocked a cleartext HTTP (http://) resource load

https://dark0946.tistory.com/312

 

[iOS9] 프로젝트 iOS9으로 업데이트시 체크해야 될 사항

금일 개발 간에 겪은 이슈에 대한 정리. # 작업 환경의 변경 * iMac Mavericks -> iMac El Capitan * XCode6 -> XCode7 AppTransportSecurity (ATS) 설정 변경하기 금번 iOS9 업데이트 되면서 보안관련 정책사항에..

dark0946.tistory.com

https://www.hahwul.com/2019/03/ios-app-http-app-trasport-security.html

 

iOS App에서 HTTP 통신 허용하기(+App Trasport Security란?)

iOS App에서 HTTP 통신 허용하기(App Trasport Security)

www.hahwul.com

 

공부할 것

#Selector addTarget

Any AnyObject

sender

_

 

개발자도 잘 모르는 가장 일반적인 실수 10가지

https://kka7.tistory.com/84

 

iOS 개발자도 잘 모르는 가장 일반적인 실수 10가지(The 10 Most Common Mistackes iOS Developers Don’t know They’re Making)

[최종 수정일 : 2017.06.15] 원문 : https://www.toptal.com/ios/top-ios-development-mistakes iOS 개발자도 잘 모르는 가장 일반적인 실수 10가지(The 10 Most Common Mistackes iOS Developers Don’t know The..

kka7.tistory.com

 

반응형

댓글