NSBundle.mainBundle()。bundleIdentifier!在swift 3.0中+“。\(self.rawValue)”?

时间:2016-10-03 17:49:04

标签: ios swift

我该如何编写代码:

NSBundle.mainBundle().bundleIdentifier! + ".\(self.rawValue)"
在Swift 3.0中

? 编辑:没关系,我想通了。

1 个答案:

答案 0 :(得分:1)

Bundle.main.bundleIdentifier! + ".\(self.rawValue)"
swift 3中省略了

NS前缀

工作代码示例: -

let rawValue = "Testing stackoverflow"
let stringValue1 = Bundle.main.bundleIdentifier! + "test"
let stringValue2 = Bundle.main.bundleIdentifier! + "\(rawValue)"

enter image description here