답변:
네트워크에서 파일을 다운로드하는 다운로드 기능이 있고 다운로드 작업이 완료되면 알림을 받고 싶다고 가정 해 보겠습니다.
typealias CompletionHandler = (success:Bool) -> Void
func downloadFileFromURL(url: NSURL,completionHandler: CompletionHandler) {
// download code.
let flag = true // true if download succeed,false otherwise
completionHandler(success: flag)
}
// How to use it.
downloadFileFromURL(NSURL(string: "url_str")!, { (success) -> Void in
// When download completes,control flow goes here.
if success {
// download success
} else {
// download fail
}
})
도움이 되었기를 바랍니다.
답을 이해하는 데 어려움이있어서 저와 같은 다른 초보자도 저와 같은 문제가있을 수 있다고 가정합니다.
내 솔루션은 최상위 답변과 동일하지만 초보자 또는 일반적으로 이해하기 어려운 사람들에게 조금 더 명확하고 이해하기 쉽기를 바랍니다.
완료 처리기를 사용하여 함수를 만들려면
func yourFunctionName(finished: () -> Void) {
print("Doing something!")
finished()
}
기능을 사용하려면
override func viewDidLoad() {
yourFunctionName {
//do something here after running your function
print("Tada!!!!")
}
}
당신의 출력은
뭔가를하고
타다 !!!
도움이 되었기를 바랍니다!
간단한 Swift 4.0 예제 :
func method(arg: Bool, completion: (Bool) -> ()) {
print("First line of code executed")
// do stuff here to determine what you want to "send back".
// we are just sending the Boolean value that was sent in "back"
completion(arg)
}
사용 방법:
method(arg: true, completion: { (success) -> Void in
print("Second line of code executed")
if success { // this will be equal to whatever value is set in this method call
print("true")
} else {
print("false")
}
})
이러한 목적으로 클로저 를 사용할 수 있습니다 . 다음을 시도하십시오
func loadHealthCareList(completionClosure: (indexes: NSMutableArray)-> ()) {
//some code here
completionClosure(indexes: list)
}
어떤 시점에서 우리는이 함수를 아래와 같이 호출 할 수 있습니다.
healthIndexManager.loadHealthCareList { (indexes) -> () in
print(indexes)
}
폐쇄에 대한 자세한 내용은 다음 링크를 참조하십시오 .
Swift 5.0 +, 간단하고 짧음
예:
스타일 1
func methodName(completionBlock: () -> Void) {
print("block_Completion")
completionBlock()
}
스타일 2
func methodName(completionBlock: () -> ()) {
print("block_Completion")
completionBlock()
}
사용하다:
override func viewDidLoad() {
super.viewDidLoad()
methodName {
print("Doing something after Block_Completion!!")
}
}
산출
block_Completion
Block_Completion 이후에 뭔가 해요 !!
맞춤 제작 완료 핸들러에 대해 약간 혼란 스럽습니다. 귀하의 예에서 :
네트워크에서 파일을 다운로드하는 다운로드 기능이 있고 다운로드 작업이 완료되면 알림을 받고 싶다고 가정 해 보겠습니다.
typealias CompletionHandler = (success:Bool) -> Void
func downloadFileFromURL(url: NSURL,completionHandler: CompletionHandler) {
// download code.
let flag = true // true if download succeed,false otherwise
completionHandler(success: flag)
}
귀하는 // download code
여전히 비동기 적으로 실행됩니다. 왜 코드는 바로 갈 것입니다 let flag = true
및 completion Handler(success: flag)
완료 할 다운로드 코드를 기다리지 않고?