1
現在我使用上面的代碼來設置一個可選的空字符串,如果它是零,並打開它,如果它有一個值。這只是三行代碼,但這對我來說是一個非常常見的操作,所以我想知道是否有更優雅的方式來做到這一點?如何設置爲零的可選項爲空字符串?
var notesUnwrapped:String = ""
if(calendarEvent.notes != nil){
notesUnwrapped = calendarEvent.notes!
}
使用'如果let'。這裏解釋:https://developer.apple.com/library/ios/documentation/Swift/Conceptual/Swift_Programming_Language/TheBasics.html#//apple_ref/doc/uid/TP40014097-CH5-ID330 – Moritz
你真的應該讀語言指南。 – Alexander