Kişisel Sayfaları
İlgi Alanları
İş Tecrubesi
Eğitim Geçmişi
Sertifikalar & Başarılar
Kullanıcıya ait test sonucu bulunmamaktadır.
Dil Becerileri
Son Forum Aktiviteleri
2Kullanıcıya ait forum aktivitesi bulunmamaktadır.
Storyboard Custom Sayfa Geçişi
- (IBAction)btn8x8Clicked:(id)sender {
_gameIndex = 0;
[self performSegueWithIdentifier:@"newGame" sender:self];
}
- (IBAction)btn10x10Clicked:(id)sender {
_gameIndex = 1;
[self performSegueWithIdentifier:@"newGame" sender:self];
}
- (IBAction)btn12x12Clicked:(id)sender {
_gameIndex = 2;
[self performSegueWithIdentifier:@"newGame" sender:self];
}
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([[segue identifier] isEqualToString:@"newGame"]) {
_gameViewController = [segue destinationViewController];
_gameViewController.gameIndex = _gameIndex;
_gameViewController.localPlayer = _localPlayer;
_gameViewController.lastChallenge = _lastChallenge;
_gameViewController.delegate = self;
}
}
Storyboard Custom Sayfa Geçişi
- (IBAction)btn8x8Clicked:(id)sender {
_gameIndex = 0;
[self performSegueWithIdentifier:@"newGame" sender:self];
}
- (IBAction)btn10x10Clicked:(id)sender {
_gameIndex = 1;
[self performSegueWithIdentifier:@"newGame" sender:self];
}
- (IBAction)btn12x12Clicked:(id)sender {
_gameIndex = 2;
[self performSegueWithIdentifier:@"newGame" sender:self];
}
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([[segue identifier] isEqualToString:@"newGame"]) {
_gameViewController = [segue destinationViewController];
_gameViewController.gameIndex = _gameIndex;
_gameViewController.localPlayer = _localPlayer;
_gameViewController.lastChallenge = _lastChallenge;
_gameViewController.delegate = self;
}
}