Translate

Vistas de página en total

miércoles, 2 de marzo de 2016

Probable aviso para usuarios de la Comunidad Europea

No sé si lo estoy haciendo bien, pero estoy atendiendo a una invitación, para cumplir con sus normas, las cuales no entiendo bien ni entiendo para qué es ésto; pero, como probablemente sí uso algunas cookies y me valgo de links de otros sitios, les hago llegar este anuncio y ya sabrán Ustedes si lo aceptan o no. Por su atención, muchas gracias.
/ This code will work in iOS 2 and up
// (spoiler: you're not going to need anything below iOS 6).
// Tested in iOS 7 
// In your app's UIApplicationDelegate:
- (BOOL)application:(UIApplication *)application
    didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  (...)
  NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
  if (![defaults boolForKey:@"termsAccepted"]) 
    NSString *message =
      @"Your message for visitors here";
    UIAlertView *alert =
      [[UIAlertView alloc] initWithTitle:@"Cookies"
                                 message:message
                                delegate:self
                       cancelButtonTitle:nil
                       otherButtonTitles:@"Close message", nil];
    [alert show];
  }
}


// Elsewhere in the file:
- (void)alertView:(UIAlertView *)alertView
    clickedButtonAtIndex:(NSInteger)buttonIndex 
  NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
  [defaults setBool:YES forKey:@"termsAccepted"];
  [defaults synchronize];
}

No hay comentarios:

Publicar un comentario