博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
OC-Q&A
阅读量:6830 次
发布时间:2019-06-26

本文共 554 字,大约阅读时间需要 1 分钟。

How to declare a string in Objective-C ?

A C string is just like in C.char myCString[] = "test";An NSString uses the @ character:NSString *myNSString = @"test";//If you need to manage the NSString's memory:NSString *myNSString = [NSString stringWithFormat:@"test"];NSString *myRetainedNSString = [[NSString alloc] initWithFormat:@"test"];Or if you need an editable string:NSMutableString *myMutableString = [NSMutableString stringWithFormat:@"test"];You can read more from the Apple NSString documentation.

 

转载于:https://www.cnblogs.com/IDRI/p/4957349.html

你可能感兴趣的文章
iOS 隐藏NavigationBar的方法
查看>>
最新.net和Java调用SAP RFC中间件下载
查看>>
(转)淘淘商城系列——导入商品数据到索引库
查看>>
Hibernate(十一):映射继承关系的三种方案
查看>>
oracle数据库使用之数据查询入门
查看>>
通过cat方式生成yum源
查看>>
属性动画的概念解析--实现星星控件
查看>>
java之JMX
查看>>
指针常量与常量指针
查看>>
在web.config中配置httpHandlers节点是的说明
查看>>
c++:数据类型的推断type_traits
查看>>
物理结构与逻辑结构
查看>>
Storm工作流程
查看>>
Opencv探索之路(十九):读写xml和yml文件
查看>>
Eclipse插件开发中的选择监听机制(Selection Provider-Listener)
查看>>
14.并发与异步 - 2.任务Task -《果壳中的c#》
查看>>
Linux时间子系统之三:jiffies
查看>>
使用 VisualVM 进行性能分析及调优
查看>>
linux升级OpenSSL
查看>>
《QQ欢乐斗地主》山寨版
查看>>