일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- UITextView
- UICollectionView
- 스위프트
- 리팩토링
- combine
- 리펙토링
- Observable
- collectionview
- Xcode
- RxCocoa
- 애니메이션
- Human interface guide
- rxswift
- swiftUI
- Refactoring
- 클린 코드
- swift documentation
- Clean Code
- ios
- HIG
- 리펙터링
- SWIFT
- uitableview
- map
- uiscrollview
- MVVM
- ribs
- tableView
- clean architecture
- Protocol
- Today
- Total
목록PRINT (3)
김종권의 iOS 앱 개발 알아가기
Dump 개념 mirror를 사용하여 객체를 출력하는 것 객체의 프로퍼티들에 접근하면서 프린트를하며, 재귀적으로 안에 있는 객체들도 같은 방법으로 프린트 (standard output) dump 함수 파라미터 value: 프로퍼티 값들을 출력할 객체 name: 해당 dump의 이름 indent: 출력될때 왼쪽 여백 인덴트값 maxDepth: 객체안에 객체가 또 있을 때 그 깊이 maxitems: 출력할 라인수 dump 예제 struct Price { var value: Int } let price = Price(value: 1) print(price) // Price(value: 1) dump(price) /* ▿ __lldb_expr_18.Price - value: 1 */ dump는 언제 사용하면 좋..
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는 mult..
디버깅 팁 print()하여 디버깅 하는 것보다, break포인트를 걸고 po로 확인하는 방법이 가장 단순하고 불필요한 코드가 생기지 않는 방법 버튼을 눌렀을 때, 값 디버깅 방법 // // ViewController.swift // Test // // Created by 김종권 on 2020/11/26. // import UIKit class ViewController: UIViewController { var variableValue = 0 var sampleData = (1, 2, 3) @IBOutlet weak var btn: PrimaryButton! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup afte..