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 | 29 | 30 | 31 |
Tags
- 애니메이션
- MVVM
- Refactoring
- UICollectionView
- 스위프트
- SWIFT
- UITextView
- rxswift
- uiscrollview
- combine
- 리펙토링
- ios
- Protocol
- uitableview
- swift documentation
- clean architecture
- 리펙터링
- ribs
- 리팩토링
- Clean Code
- swiftUI
- tableView
- collectionview
- RxCocoa
- Human interface guide
- Xcode
- map
- Observable
- HIG
- 클린 코드
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] print vs NSLog 본문
print와 NSLog의 차이
- NSLog는 String타입만 입력 가능
print(1)
NSLog(1) // Cannot convert value of type 'Int' to expected argument type 'String'
- NSLog는 time stamp와 Project이름이 같이 출력
let sample = 123
print("this is print = \(sample)") // this is print = 123
NSLog("this is NSLog = \(sample)") // 2021-02-24 23:35:53.363868+0900 NSLog[5403:871822] this is NSLog = 123
- NSLog는 print에 비하여 매우 느린 performance
- NSLog는 multi thread 환경에서 사용, overlapping되지 않고 출력
- print는 multi thread 환경에서 사용하지 않고, overlapping되며 출력
* 참고
'iOS 기본 (swift)' 카테고리의 다른 글
[iOS - swift] property 구분 방법 (stored property, computed property, lazy property) (0) | 2021.02.25 |
---|---|
[iOS - swift] switch와 where을 같이 사용하는 방법 (0) | 2021.02.25 |
[iOS - swift] @discardableResult (0) | 2021.02.19 |
[iOS - swift] 번들과 패키지(Bundle, package), Framework 개념 (0) | 2021.02.12 |
[iOS - swift] enumerated() 함수 (0) | 2021.02.09 |
Comments