搜索 NSMutableArray

发布于 2024-12-07 07:14:08 字数 284 浏览 0 评论 0原文

您好,我想要做的是在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅浅 2024-12-14 07:14:08

请参阅手册:NSArray 类参考< /a>

See the manual: NSArray Class Reference

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文