NSString 用法總結與陷阱

2021-05-25 11:15:08 字數 453 閱讀 7682

nsstring  用法總結與陷阱

1。  如何 從 std::string  轉為 nsstring ,也就是 unicode

(1) 使用  stringwithcstring

(2) 使用  stringwithformat 

如果是從 string 轉換為nsstring,千萬不要使用下面這樣的**:

要使用也使用下面的**:

2. 如何從 nsstring轉換為 std::string

使用 utf8string 方法

3. nsstring 怎麼比較是否相等

4. nsstring 怎麼讓 字串相連相加

nsstring * beijin=@"北京市";

nsstring * shanghai=@"上海市";

nsstring * nsresult=nil;

typedef 用法與陷阱

首先來看乙個宣告 typedef int myfunc const char const struct stat int 怎麼理解吶?myfunc const char const struct stat int 是int,是不是有點問題。這就是對typedef的理解出了問題。之前見到的都是type...

NSString 的比較用法

今天要做通訊錄搜尋功能,所以就把比較文件看了下 nsstring value 1234567890 比較的方法 value compare nsstring value compare nsstring options nsstringcompareoptions value compare nss...

NSString常用屬性和用法

建立乙個字串物件 nsstring str1 www.hello.txt nslog str1 用格式化字串初始化 int a 123 nsstring str2 nsstring alloc initwithformat d a,str1 nslog str2 快速建立乙個字串常量 nsstrin...