Giter VIP home page Giter VIP logo

Comments (6)

granoff avatar granoff commented on July 21, 2024

You can save (nearly) anything you like into the keychain using Lockbox, but you'll have to write your own code to call the Lockbox methods to do so.

You may instead want to combine iCloud with your CoreData store. After a bit of setup, and without any other specific changes to save the data in general, the data you want to persist across app deletion remains in iCloud. Then you need only detect that you can restore it from iCloud, and viola!

The keychain isn't really the place to accomplish this, but you can certainly use it for that purpose if you must.

from lockbox.

badalpub1991 avatar badalpub1991 commented on July 21, 2024

Thank you sire for your replay. I am fetching data from lockbox to store it in coredata. but i am not able to set it as object for key. because it will not find any key. How can i achive this ?
I ahve saved it as nsarray.
Here is Method :

              NSFetchRequest *fetchrequestforside=[NSFetchRequest fetchRequestWithEntityName:@"demo"];
           NSManagedObjectContext *context = [self managedObjectContext];
           NSManagedObject *newDevice1 = [NSEntityDescription insertNewObjectForEntityForName:@"demo" inManagedObjectContext:context];

              NSArray *fetchdata = [Lockbox arrayForKey:@"fetch"]; // 

                for (int i =0;i<[fetchdata count];i++){
              NSString *Name  =[[fetchdata objectAtIndex:i] objectForKey:@"name"];
              NSString *Websitename  =[[fetchdata objectAtIndex:i] objectForKey:@"websitename"];
              NSString *Feedlink  =[[fetchdata objectAtIndex:i] objectForKey:@"feedurl"];


            NSLog(@"value:%@,%@,%@",Name,Websitename,Feedlink);
               [newDevice1 setValue:Name  forKey:@"name"];

            [newDevice1 setValue:Websitename  forKey:@"websitename"];
           [newDevice1 setValue:Feedlink forKey:@"feedurl"];
              NSLog(@"value:%@,%@,%@",Name,Websitename,Feedlink);


           // Save the context.
            NSError *error = nil;
         if (![context save:&error]) {

              NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
            abort();
      }
}

I am getting data in this fom in lockbox :

<__NSArrayI 0x7fab3be54710>(
{
feedurl = "http://www.refernews.com/feed";
name = "Refer News";
websitename = "www.refernews.com";
},
{
feedurl = "http://www.cnet.com/rss/news/";
name = "CNET - Technology ";
websitename = "www.cnet.com";
},
{
feedurl = "http://www.huffingtonpost.in/feeds/verticals/india/index.xml";
name = Huffingtonpost;
websitename = "www.huffingtonpost.in";
},
{
feedurl = "https://in.news.yahoo.com/rss/europe";
name = "Yahoo World - Europe";
websitename = "www.yahoo.com";
}
)

from lockbox.

granoff avatar granoff commented on July 21, 2024

I don't think the issue here is with Lockbox as much as it may be with your CoreData code. What does the class interface and implementation look like for your demo entity? The data coming out of Lockbox looks reasonable.

from lockbox.

badalpub1991 avatar badalpub1991 commented on July 21, 2024

yes. data comes properly from lockbox. But i am not able to fetch it in string with "objectforkey" . I have tried several method,s but after coming from lockbox it will not find "objectforkey". Moreover , I have tried it with setting simple dictionary with single key but still when debugger reached at "objectforkey" I am getting this type of error .

from lockbox.

granoff avatar granoff commented on July 21, 2024

Hmm... I just created some unit tests locally to see what's happening here, and there does seem to be an issue, undoubtedly related to saving an array of dictionaries. I'll look into it.

from lockbox.

granoff avatar granoff commented on July 21, 2024

The crux of the issue is that nesting complex types is a bad idea at the moment. You'd be better off persisting your array of dictionaries to a plist on disk or in iCloud if you need persistence across app deletes. The solution for this is non-trivial. I'll have to give it some thought before I dive into it.

from lockbox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.