OŚRODEK SZKOLENIA KIEROWCÓW I DOSKONALENIA ZAWODOWEGO "MENTOR"
START
CENNIK
POJAZDY SZKOLENIOWE
KONTAKT
KONTAKT
OSK MENTOR
ul. Wierzbowa 16A
42-400 Zawiercie
tel. 32 644 93 00
tel. kom. 502 085 083
Biuro czynne od poniedziałku do piątku
w godz. 15:00 do 17:00
ZAPRASZAMY
tl większą mapę
Wyświe
Wyświetl większą mapę
Strona główna
Subskrybuj:
Posty (Atom)
// 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]; }