Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8848415
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T12:25:06+00:00 2026-06-14T12:25:06+00:00

I am probably doing something wrong, but when I use the code below, and

  • 0

I am probably doing something wrong, but when I use the code below, and want Lockbox to save elements to the keychain on the first launch of the app nothing is stored. If I then run the app again and add the elements in the else part, then it saves the data.

Any suggestions?

NSString *value = @"";
NSArray *array = [Lockbox arrayForKey:@"TestKey"];
value = [array componentsJoinedByString:@"|"];

if(value == nil)
{
    BOOL result = NO;
    NSArray *narray = [NSArray arrayWithObjects:
                       [value stringByAppendingString:@"key1"],
                       [value stringByAppendingString:@"key2"],
                       [value stringByAppendingString:@"|http://www.url.com/"],
                       [value stringByAppendingString:@"|http://www.url2.com/"],nil];
    result = [Lockbox setArray:narray forKey:@"TestKey"];
}else{
    NSArray *narray = [NSArray arrayWithObjects:
                       [value stringByAppendingString:@"key1"],
                       [value stringByAppendingString:@"key2"],
                       [value stringByAppendingString:@"|http://www.url.com/"],
                       [value stringByAppendingString:@"|http://www.url2.com/"],nil];
    result = [Lockbox setArray:narray forKey:@"TestKey"];

    NSString *keyv1 =[array objectAtIndex:0];
    NSLog(@"key value %@",keyv1);

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T12:25:07+00:00Added an answer on June 14, 2026 at 12:25 pm

    ha! got it .. didnt see it at first:

    the first time, nothin is stored in the keychain so array is NIL

    value should then be [nil componentsJoinedBy…]

    value is nil!

    so [nil stringByAppendinString will always be nil and an EMPTY array will be saved on first run


    on second run array is NOT nil as Lockbox reads back the empty array
    (so then all works)

    idea, change:

    NSArray *array = [Lockbox arrayForKey:@"TestKey"];
    value = [array componentsJoinedByString:@"|"];
    
    if(value==nil)
    ...
    

    to

    NSArray *array = [Lockbox arrayForKey:@"TestKey"];
    if(array)
         value = [array componentsJoinedByString:@"|"];
    else
         value = @"";
    
    if(value.length)
    ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Probably I'm doing something wrong but here it goes: I'm trying to create a
There is probably something dumb I am doing wrong here. public function get_scores($id) {
I'm probably doing something realy stupid but I cant get this to work: var
First off, I'm relatively new to Google App Engine, so I'm probably doing something
Probably something stupid I'm doing. I want to populate a hidden DIV with values
I know this probably really simple but Im not sure what im doing wrong...
Ok, I think whatever I'm doing wrong, it's probably blindingly obvious, but I can't
I'm a new Spring user, and probably doing something wrong (due to a misunderstanding
I'm probably doing something wrong. Scenario: 3 computers: server, laptop and firewalled machine, no
First, sorry this is so long. I probably don't need all the code, but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.