搜索 NSMutableArray
您好,我想要做的是在 NSMutable 数组中搜索字符串 str 或视图中的标题标签。如果该单词已存在于数组中,那么我想将其删除。否则我想添加它。到目前为止,这是我的代码。
-(IBAction)add:(id)sender{
NSMutableArray *array=[[NSUserDefaults standardUserDefaults] mutableArrayValueForKey:@"favorites"];
NSString *str=header.text;
}
Hi what I want to do is search an NSMutable array for the string str or the header label in the view. If the word already exists in the array then I want to delete it. Otherwise I want to add it. Here's my code so far.
-(IBAction)add:(id)sender{
NSMutableArray *array=[[NSUserDefaults standardUserDefaults] mutableArrayValueForKey:@"favorites"];
NSString *str=header.text;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅手册:NSArray 类参考< /a>
See the manual: NSArray Class Reference