Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- google cloud
- DeepLearning
- objectdetection
- pythonnet
- Google API
- 업무자동화
- pdf merge
- yolo
- 사무자동화 #Selenium
- Text-to-Speech
- computervision
- YOLOv7
- YOLOv5
- Text To Speech
- pypdf2
- pyautogui
- ironpython
- 사무자동화
- 파이썬 #업무자동화 #python
- processstart
Archives
- Today
- Total
Doarchive
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 |
728x90
'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 |