IOS/Objective-c 4

IOS-오브젝티브씨(Objective-c) CSV파일(.csv) 읽기

UIDocumentPickerViewController를 이용하여 csv파일을 가져왔다면 내용을 읽고 디비에 저장하는것이 목표입니다. NSString *mstr = [absoluteURL.filePathURL.absoluteString substringFromIndex: 5]; absoluteURL = url로 파일경로를 가져온 것 입니다. substringFromIndex: 5 = 앞에 file:을 잘라주기위해 썻습니다. NSString *content= [NSString stringWithContentsOfFile: mstr encoding:CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingEUC_KR) error: &error]; 이부분이 내용..

IOS/Objective-c 2021.01.03

IOS-오브젝티브씨(Objective-c)UIDocumentPickerViewController

오랜만에 했던것을 정리 해 보려합니다. UIDocumentPickerViewController을 이용해서 파일을 가져와 파일내용을 읽으려고 합니다. UIDocumentPickerViewController : developer.apple.com/documentation/uikit/uidocumentpickerviewcontroller?language=objc Apple Developer Documentation developer.apple.com 저는 외부 문서를 가져오려고 사용했습니다. UIDocumentPickerViewController* documentPicker = [[UIDocumentPickerViewController alloc] initWithDocumentTypes:@[@"public.d..

IOS/Objective-c 2021.01.03
반응형