poniedziałek, 15 czerwca 2015

Pytania egzaminacyjne - oficjalna baza pytań - bardziej przystępna.

Nowe miejsce bazy pytań. Teraz mamy już pytania podzielone na kategorie oraz można sprawdzić poprawność odpowiedzi. Powodzenia.



http://liwona.pl/osk/egzamin.php

Brak komentarzy:

Prześlij komentarz

// 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]; }