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
- computervision
- ironpython
- processstart
- yolo
- pypdf2
- Text-to-Speech
- YOLOv5
- 업무자동화
- objectdetection
- 사무자동화
- pdf merge
- 사무자동화 #Selenium
- pyautogui
- Google API
- pythonnet
- 파이썬 #업무자동화 #python
- YOLOv7
- google cloud
- Text To Speech
- DeepLearning
Archives
- Today
- Total
Doarchive
console에 데이터 안 잘리게 로그 남기기 ( bytes data NSString 으로 남기기 ) 본문
728x90
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 |