问题标签 [nsstring]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
cocoa - 如何用一个随机字母创建一个 NSString?
我需要创建一个具有单个随机大写字母的 NSString。
我可以得到随机 int 很好,我可以从中构造一个 C 字符串,然后制作 NSString,但我想必须有一种更好、更可可的方式。
谢谢!
iphone - 将 NSString 插入 NSBundle 的 pathForResource?
这会为 Impactdrawarray 中的 UIImageView 设置动画:
什么都没有出现:
我使用 NSString 的参考(示例)
如何在文件名中使用变量?有没有办法通过索引在资源文件夹中加载图像?像imageByIndex:currentanimationframe
什么?我在 UIImage 文档中没有看到任何内容。
回复评论:
和
都编译和运行,但图像不显示。
iphone - stringWithContentsOfURL 不适用于某些字符串
我有类似下面的代码和这样的 URL...如果我使用第一个 *url,网页将返回 null。如果我将此 URL 放入像 bit.ly 这样的 URL 缩短系统中,它确实可以工作并将页面 HTML 作为字符串返回。我只能认为我的第一个 *url 中有无效字符?有任何想法吗?
objective-c - Objective-C: Reading a file line by line
What is the appropriate way of dealing with large text files in Objective-C? Let's say I need to read each line separately and want to treat each line as an NSString. What is the most efficient way of doing this?
One solution is using the NSString method:
and then split the lines with a newline separator, and then iterate over the elements in the array. However, this seems fairly inefficient. Is there no easy way to treat the file as a stream, enumerating over each line, instead of just reading it all in at once? Kinda like Java's java.io.BufferedReader.
iphone - iPhone NSString 转换为可读文本
我有一段 NSString 将读取“测试和测试”或“
有什么方法不用搜索和替换就可以使显示为“&”或“””?
objective-c - 如何从 @"xxx=%@, yyy=%@" 和对象的 NSArray 之类的格式字符串创建 NSString?
有没有办法从像 @"xxx=%@, yyy=%@" 这样的格式字符串和对象的 NSArray 中创建一个新的 NSString?
在 NSSTring 类中有许多方法,例如:
但他们都没有将 NSArray 作为参数,我找不到从 NSArray 创建 va_list 的方法......
iphone - 在 NSString 的特定行拆分字符串
您好,有没有办法在特定行拆分 UITableView 的字符串,以将“其余”(数据的第二部分)放在自己的单元格中
如果 size.height eg 大于 1500 我想在这一行位置分割字符串!
谢谢你
debugging - NSDictionary 和 NSURL 的 Objective-C 问题
我是 Objective-C 的新手,我不知道为什么这段代码不起作用:
我得到的错误是:
任何帮助,将不胜感激。谢谢。
objective-c - Objective-C 上下文中不熟悉的 C 语法
我从 C# 来到 Objective-C,没有任何 C 的中间知识。(是的,是的,我需要在某个时候学习 C,我完全打算学习。)在 Apple 的证书、密钥和信任服务编程指南中,有是以下代码:
我有一个NSString
我想在这里用作标识符的标识符,在我的一生中,我无法弄清楚如何将其放入这个数据结构中。通过谷歌搜索也没有结果。我查看了NSString Class Reference并查看了UTF8String
andgetCharacters
方法,但我无法将产品放入结构中。
我缺少什么简单易行的技巧?
objective-c - 如何从 NSString 中删除前 3 个字符?
我有一个像这样的字符串“A. rahul VyAs”
我想删除“A.”和“A.”之后的空格。这样新字符串将是“rahul VyAs”
我如何实现这一目标?