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 |
Tags
- Concurrent
- iOS 버전 점유율
- rib
- swiftdocs
- RIBs Tutorial
- 잡초가득블로그
- Github file size
- iOS Target
- 클린아키텍쳐
- SWIFT
- 메모리 접근 충돌
- RxCocoa
- Automatically manage signing
- UICoordinateSpace
- 로버트마틴형
- coordinateSpace
- Dependency Rule
- RxSwift
- ios
- Apple Certificate
- windowScene
- memory safety
- Ribs
- 대머리깃허브
- conflicting access to memory
- App Signing
- Git Large File Storage
- Large File Storage
- Dispatch.main.sync
- in-out
Archives
- Today
- Total
빙수왕의 개발일지
Api에서 받아온 data를 예쁘게 출력하기 본문
데이터를 받아와서 테스트로 콘솔에 출력해볼 때, 백슬래시 범벅의 가독성 나쁜 상태와 마주한다..
아래와 같은 코드로 찍어볼 수 있지만..
굳이 2번 변환해야되는데 이거 말고 좋은건 없을까?..
do {
let json = try JSONSerialization.jsonObject(with: data, options: []) as! [String:AnyObject]
let prettyJson = try JSONSerialization.data(withJSONObject: json, options:JSONSerialization.WritingOptions.prettyPrinted )
if let prettyString = String(data: prettyJson, encoding: String.Encoding.utf8) {
print(prettyString)
}
} catch { print("Failed to load: \(error.localizedDescription)") }
여기 나와 같은 고민 .. 근데 뭔가 게시물을 여기저기 찾아봐도 더 나은걸 찾지 못했다.. 아시는분 있으면 알려주세요우
'개발 > iOS' 카테고리의 다른 글
주석 다는법 (0) | 2021.05.07 |
---|---|
tabBarItem.value(forkey: "view")가 nil일 때 (0) | 2021.04.17 |
struct의 variable들을 array처럼 쓸 수는 없을까? (0) | 2021.03.03 |
loaded the \"FirstViewController\" nib but the view outlet was not set (0) | 2021.03.01 |
StackView distribution 속성 정리 (0) | 2021.02.23 |