updateHeaderNotifications
とDebugAlertをNSlocalizedString
に割り当てるにはどうしたらいいですか?私はupdateHeaderNotifications = Nslocalized("text_text")
を追加しようとしましたが、それは動作しません。あなたのメソッドの定義に基づいて、ヘルプswitch文をNSlocalizedStringに割り当てる
private func initViewToCurrentState(pocketStatus: pocketStatus?) {
if let status = pocketStatus {
switch status {
case .Created:
**updateHeaderNotifications** ("text1")
initpocketBeforeTripView()
case .Paid: fallthrough
case .Undone: fallthrough
case .Aborted: fallthrough
default:
PocketRideService.sharedInstance.removeCachedRide()
dismissViewControllerAnimated(false, completion: {
DebugAlert.show("text")
})
}
}
}
? – matsoftware