私はxcodeが初めてで、非常に基本的な質問があります。コードが機能しない理由を見つけるために、何日も探していました。あるViewcontrollerから別のコントローラーに変数を渡したいです。
これは私のViewcontrollerです:
//
// GameViewController.m
// Cartas
//
// Created by Pedro Lopes on 10/5/13.
// Copyright (c) 2013 Pedro Lopes. All rights reserved.
//
#import "GameViewController.h"
#import "Baralho.h"
@interface GameViewController ()
@property (nonatomic,strong) Baralho *card;
@property (weak, nonatomic) IBOutlet UILabel *flipLabel;
@property (weak, nonatomic) IBOutlet UILabel *cartasRestantes;
@property (nonatomic) int flipsCount;
@property int contador;
@end
@implementation GameViewController
- (Baralho *)card
{
if (_card == nil)
_card = [[Baralho alloc] init];
return _card;
}
- (IBAction)flipCard:(UIButton *)sender
{
if (!sender.selected)
{
NSString *temp1 = [[self card] matchCard:@"Just a Test"];
NSString *temp2 = self.card.drawRandomCard;
[sender setTitle:temp2 forState:UIControlStateSelected];
self.cartasRestantes.text = [NSString stringWithFormat:@"Cartas Restantes: %@",temp1];
}
sender.selected = !sender.isSelected;
self.flipsCount++;
self.flipLabel.text = [NSString stringWithFormat:@"Flips: %d",self.flipsCount];
}
@end
これは私の他のコントローラーです
//
// Baralho.m
// Cartas
//
// Created by Pedro Lopes on 10/6/13.
// Copyright (c) 2013 Pedro Lopes. All rights reserved.
//
#import "Baralho.h"
@interface Baralho()
@end
@implementation Baralho
- (NSString *)matchCard:(NSString *)teste
{
_matchCard = teste;
return _matchCard;
}
@end
問題は次の行で発生します。
NSString *temp1 = [[self card] matchCard:@"Just a Test"];
エラー: !No Visible interface for 'Baralho' は、セレクター 'matchcard' を宣言しています
この別のコントローラーに変数を渡すにはどうすればよいですか?
ありがとう、
ペドロ。