HTML text -> UILabel 적용을 위해 NSMutableAttributedString 변환 시 크래시 발생
상황서버에서 내려주는 HTML text를 UILabel로 적용하기 위해 아래와 같이 변환하려 함 let attributedString = try? NSMutableAttributedString(data: data, options: [NSAttributedString.DocumentReadingOptionKey.documentType: NSAttributedString.DocumentType.html], documentAttributes: nil)디버그 시 크래시 발생에러 메세지Thread 1: EXC_BREAKPOINT (code=1, subcode=0x1aef22a18)ㅌ해결 방법Malloc Stack Logging을 꺼주자. 이유NSMutableAttributedString 변환 시 WebKit인가를..