nsstrings 的 NSMutableArray (在 UISearchBar 委托之一中)可以使用持久存储吗?

发布于 2024-12-08 16:53:04 字数 570 浏览 0 评论 0原文

我想在我的应用程序中创建一个历史列表。我在这里浏览并查看了很多问题,但到目前为止我还没有找到我的问题的答案。

我的代码:

-(void)searchBarTextDidEndEditing:(UISearchBar *)searchBar
{
    NSLog (@"search bar text did end editing!");
    NSString *bookmarked = mySearchBar.text;    
    NSMutableArray *bookmarkl = [[NSMutableArray alloc] init];
    int i;
    for (i = 0; i < [bookmarkl count]; i ++)
    {
        [bookmarkl addObject:bookmarked];
    }
    for (NSString *sa in bookmarkl);
    NSLog (@"whole array: %@", bookmarkl);
}

但我每次得到的只是一个字符串。怎么了? 我想向可变数组添加一个新字符串,我应该怎么做?

I would like to make a history list in my app. I have surfed and looked at many questions here, but so far I haven´t found the answer to my question.

My codes:

-(void)searchBarTextDidEndEditing:(UISearchBar *)searchBar
{
    NSLog (@"search bar text did end editing!");
    NSString *bookmarked = mySearchBar.text;    
    NSMutableArray *bookmarkl = [[NSMutableArray alloc] init];
    int i;
    for (i = 0; i < [bookmarkl count]; i ++)
    {
        [bookmarkl addObject:bookmarked];
    }
    for (NSString *sa in bookmarkl);
    NSLog (@"whole array: %@", bookmarkl);
}

But all I get is one string at a time. What is wrong?
I want to add a new string to the mutable array, how should I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

何以心动 2024-12-15 16:53:04

每次调用该函数时,您都会创建一个新列表。您应该将 bookmarkl 作为属性添加到您的类中,并且仅在初始化期间创建一次。如果您希望在应用程序关闭时保留历史记录,您还需要将数据写入文件。您可以使用 [NSMutableArray arrayWithContentsOfFile] 加载历史记录并使用 writeToFile 保存它。

You are creating a new list every time the function is called. You should add bookmarkl to your class as a property and only create it once during initialization. If you want the history to persist when your app is closed you will also want to write the data to a file. You can use [NSMutableArray arrayWithContentsOfFile] to load the history and writeToFile to save it.

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