這是我的代碼。所有行都執行,但只有最後一行才起作用,因爲那是必須執行的最後一行。是否有人知道我可以將所有這些代碼放到一行中,或者讓所有行都實際執行。謝謝swift的查找圖標文件
override func controlTextDidChange(notification: NSNotification) {
let url = NSURL(fileURLWithPath: "/Applications/\(Search.stringValue).app/Contents/Resources/AppIcon.icns")
Theimageicon.image = NSImage(byReferencingURL: url)
let url2 = NSURL(fileURLWithPath: "/Applications/\(Search.stringValue).app/Contents/Resources/icon.icns")
Theimageicon.image = NSImage(byReferencingURL: url2)
let url3 = NSURL(fileURLWithPath: "/Applications/\(Search.stringValue).app/Contents/Resources/\(Search.stringValue).icns")
Theimageicon.image = NSImage(byReferencingURL: url3)
}
我已回覆您的問題編輯。它完全改變了問題,並使已發佈的答案失效。 - 如有必要,您應該發佈一個新問題(如果有幫助,請考慮*接受*答案)。 –
感謝您的反饋。 :) – Nate