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
- google cloud
- pdf merge
- YOLOv7
- 업무자동화
- yolo
- objectdetection
- pypdf2
- processstart
- 파이썬 #업무자동화 #python
- pyautogui
- YOLOv5
- 사무자동화 #Selenium
- Text To Speech
- ironpython
- DeepLearning
- 사무자동화
- computervision
- Text-to-Speech
- Google API
- pythonnet
Archives
- Today
- Total
Doarchive
[ObjectiveC] Converter Data to String NSData 를 NSString으로 변환 본문
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' 카테고리의 다른 글
Framework 관련 에러 can not find resource (0) | 2021.01.25 |
---|---|
converter Data to String (0) | 2020.12.15 |
[iOS] Dynamic framework 와 Static framework (0) | 2020.10.22 |
[Xcode] breakpoint 안잡힐때 (0) | 2020.10.14 |
[objectiveC] Current view에 alert 띄우기 (0) | 2020.09.01 |