Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- SWIFT
- uikit
- xcodecloud
- UI
- iOS 13.0+
- navigationsplitview
- composablearchitecture
- tuist #xcodecloud #ios #ci/cd #swiftlint #firebase
- github
- test
- concurrency
- swiftdata
- Firebase
- xcode
- ObjC
- ios18
- TCA
- network
- combine
- Navigation
- 개발
- 모바일
- Git
- iOS 개발자
- Tuist
- 정규표현식
- SWIFTUI
- Alamofire
- IOS
- regex
Archives
- Today
- Total
목록ObjC (1)
iOS 개발 기록
[ObjC] 클래스와 메서드
📄목차파일 구조Header파일(.h)과 Implementaion파일(.m) import 클래스 구조Class와 Category @interface,@implementation / @end메서드의 선언함수의 호출Reference Objective-C는 객체지향 프로그래밍을 목적으로 C언어의 확장 형태로 개발되었다. C나 C++과 호환됨녀서 다른 문법을 추가로 지원한다. 파일 구조Header파일(.h)과 Implementaion파일(.m) .swift파일 하나만 있는 Swift와는 달리 Objective-C는 선언파일(.h)과 구현파일(.m)로 나뉘어진다. /// NSString+Size.h #import @interface NSString (Size) - (CGSize)stringSize:(NSIntege..
ObjC
2023. 10. 11. 14:11