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
- processstart
- 기술사공부
- Text To Speech
- pdf merge
- Claude
- 사무자동화 #Selenium
- DeepLearning
- 정보관리기술사
- 기술사
- YOLOv5
- Text-to-Speech
- 파이썬 #업무자동화 #python
- google cloud
- ironpython
- objectdetection
- pythonnet
- Google API
- yolo
- 업무자동화
- 컴퓨터시스템응용기술사
- YOLOv7
- computervision
- pyautogui
- 사무자동화
- pypdf2
Archives
- Today
- Total
기술사패스
console에 데이터 안 잘리게 로그 남기기 ( bytes data NSString 으로 남기기 ) 본문
NSMutableString 을 사용할것
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
NSMutableString *wholeRawDate = [[NSMutableString alloc]init];
unsigned char *bytePtr = (unsigned char *)[data bytes];
for(int i=0; i<data.length; i++ )
{
[wholeRawDate appendFormat:@"%@", [NSString stringWithFormat:@"%02x",(Byte)bytePtr[i]]];
}
NSLog(@"wholeRawDate [%@]\n",wholeRawDate);
|
cs |
'Mobile > iOS' 카테고리의 다른 글
| [objectiveC] Current view에 alert 띄우기 (0) | 2020.09.01 |
|---|---|
| [Firebase/Database] users failed: permission_denied (0) | 2020.07.29 |
| [XCode] Unit Test-2 Option Setting (0) | 2020.06.18 |
| [XCode] Add unit Test in Existing project (0) | 2020.06.18 |
| Auto Layout - 오토 레이아웃 (0) | 2020.05.07 |