Search code examples
iosmpmovieplayercontroller

how do i manage the number of views and likes on app ios


i have tried to look for a way to manage the number of views and likes on videos in iOS but i don't know the best way to do it or the safest way since i'm saving it to memory do i use NSUserDefault


Solution

  • Yes. You can use NSUserDefault. It is to store the data and you can retreive it from any place of the projects. It can be done by following way:

    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
    [userDefaults setObject:yourdata forKey:@"keyName"];
    [userDefaults synchronize];
    

    Write the below code where you want to get the saved data in userdefaults.

    NSUserDefaults *userDefauls = [NSUserDefau;ts standardUserDefaults];
    value = [userDefaults objectForKey:@"keyName"];