ios – 如何将Swift String连接到Objective C NSString?

我吃疯狂药吗直接从文档中删除

Swift automatically bridges between the String type and the Nsstring class. This means that anywhere you use an Nsstring object,you can use a Swift String type instead and gain the benefits of both types—the String type’s interpolation and Swift-designed APIs and the Nsstring class’s broad functionality. For this reason,you should almost never need to use the Nsstring class directly in your own code. In fact,when Swift imports Objective-C APIs,it replaces all of the Nsstring types with String types. When your Objective-C code uses a Swift class,the importer replaces all of the String types with Nsstring in imported API.

要启用字符串桥接,只需导入基础“.

我做了这个…考虑:

import Foundation

var str = "Hello World"

var range = str.rangeOfString("e")

// returns error: String does not contain member named: rangeOfString()

然而:

var str = "Hello World" as Nsstring

var range = str.rangeOfString("e")

// returns correct (2,1)

我错过了什么吗?

解决方法

你已经有你的问题的答案.你错过了演员.写Swift代码时,这样一个语句
var str = "Hello World"

创建一个Swift字符串,而不是Nsstring.要使其作为Nsstring工作,您应该在使用之前使用as操作符将其转换为Nsstring.

这不同于调用在Objective-C中编写的方法,并提供一个String而不是一个Nsstring作为参数.

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...