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 | 31 |
Tags
- pdf merge
- google cloud
- ironpython
- YOLOv7
- 업무자동화
- 파이썬 #업무자동화 #python
- pypdf2
- Text-to-Speech
- pythonnet
- yolo
- computervision
- Text To Speech
- YOLOv5
- 사무자동화 #Selenium
- pyautogui
- processstart
- DeepLearning
- Google API
- 사무자동화
- objectdetection
Archives
- Today
- Total
Doarchive
converter Data to String 본문
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
uint8_t *receivecData = (uint8_t*)[data bytes];
NSString *receivecStr;
const unsigned char *dbytes = [data bytes];
NSMutableString *hexStr =
[NSMutableString stringWithCapacity:[data length]*2];
int i;
for (i = 0; i < [data length]; i++) {
[hexStr appendFormat:@"%02x ", dbytes[i]];
}
receivecStr = [NSString stringWithString: hexStr];
|
cs |
728x90
'Mobile > iOS' 카테고리의 다른 글
Uninstall Python On Mac 맥 OS 에서 파이썬 삭제하는 방법 (0) | 2021.03.10 |
---|---|
Framework 관련 에러 can not find resource (0) | 2021.01.25 |
[ObjectiveC] Converter Data to String NSData 를 NSString으로 변환 (0) | 2020.11.24 |
[iOS] Dynamic framework 와 Static framework (0) | 2020.10.22 |
[Xcode] breakpoint 안잡힐때 (0) | 2020.10.14 |