Notice
Recent Posts
Recent Comments
Link
투케이2K
527. (ios/swift5) [유틸 파일] getAssetLoadHtmlUrl : 프로젝트 내에 저장된 html 파일 로드 수행 본문
IOS
527. (ios/swift5) [유틸 파일] getAssetLoadHtmlUrl : 프로젝트 내에 저장된 html 파일 로드 수행
투케이2K 2024. 5. 1. 11:23[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : SWIFT5
[소스 코드]
// -----------------------------------------------------------------------------------------
// MARK: - [프로젝트 내에 저장된 html 파일 로드 수행]
// -----------------------------------------------------------------------------------------
func getAssetLoadHtmlUrl(filePath: String) -> URLRequest? {
/*
// -----------------------------------------
[getAssetLoadHtmlUrl 메소드 설명]
// -----------------------------------------
1. 프로젝트 내에 저장된 html 파일 로드 수행
// -----------------------------------------
2. 호출 방법 :
C_App().getAssetLoadHtmlUrl(filePath: "functionTest")
// -----------------------------------------
3. 리턴 예시 :
file:///private/var/containers/Bundle/Application/59377464-9069-4A49-B89F-BBBB194A4FE4/swiftProject.app/functionTest.html
// -----------------------------------------
*/
// [변수 선언]
var returnData: URLRequest? = nil
var M_LOG = ""
// [로직 처리 수행]
if C_Util().stringNotNull(str: filePath) == true {
guard let localFilePath = Bundle.main.path(forResource: filePath, ofType: "html")
else {
M_LOG = "[Error] :: file type error"
S_Log._D_(description: "프로젝트 내에 저장된 html 파일 로드 에러", data: [
"M_LOG :: \(String(describing: M_LOG))"
])
return nil
}
let urlFile = URL(fileURLWithPath: localFilePath)
var request = URLRequest(url: urlFile)
// [리턴 변수 삽입]
returnData = request
M_LOG = "[Success] :: getAssetLoadHtmlUrl"
}
else {
M_LOG = "[Error] :: Input Data Is Null"
}
// [로그 출력 실시]
S_Log._D_(description: "프로젝트 내에 저장된 html 파일 로드 수행", data: [
"INPUT :: \(String(describing: filePath))",
"M_LOG :: \(String(describing: M_LOG))",
"RETURN :: \(String(describing: returnData))"
])
// [리턴 변수 선언]
return returnData
}
[결과 출력]
반응형
'IOS' 카테고리의 다른 글
529. (ios/swift5) [유틸 파일] moveFile : 파일 이동 수행 (0) | 2024.06.16 |
---|---|
528. (ios/swift5) [유틸 파일] isRunningApplication : 애플리케이션 구동 상태 확인 - applicationState (0) | 2024.05.14 |
526. (ios/swift5) [유틸 파일] resizeImage : UIImage Resize 이미지 리사이징 수행 (0) | 2024.05.01 |
525. (ios/swift5) [유틸 파일] cgRecFullScreen : CGRect 전체 화면 사이즈 지정 (0) | 2024.04.29 |
524. (ios/swift5) [유틸 파일] cgRecCenter : CGRect 센터 배치 수행 (0) | 2024.04.28 |
Comments