0

助けてください....私はこの問題を理解しようとして頭がおかしくなっています。私は iOS にかなり慣れていないので、それが明らかな場合でも、私にあまり力を入れないでください! ;)

私は xcode 4.6 を使用しており、iPhone6.1 シミュレーターをターゲットにしています。

アプリの起動時に次のエラーが表示されます。

EXC_BAD_ACCESS code = 2

Debug Navigator には何百ものスレッドが表示され、どこかにある種の無限ループがあると思われます (場所がわかりません)。

次の行でViewController.mから入力した後、PlayingCardDeck.mの(id)initの横にエラーが発生します。

Card *card = [self.deck drawRandonCard];


ビューコントローラー:

#import "ViewController.h"

#import "PlayingCardDeck.h"

@interface ViewController ()

@property (weak, nonatomic) IBOutlet UILabel *flipsLabel;
@property (nonatomic) int flipCount;
@property (strong, nonatomic) Deck *deck;
@property (strong, nonatomic) IBOutletCollection(UIButton) NSArray *cardButtons;

@end

@implementation ViewController

@synthesize deck = _deck;

- (IBAction)flipCard:(UIButton *)sender {
    sender.selected = !sender.isSelected;
    self.flipCount++;
}

- (void)setFlipCount:(int)flipCount
{
    _flipCount = flipCount;
    self.flipsLabel.text = [NSString stringWithFormat:@"Flips: %d", self.flipCount];
}

- (Deck *)deck
{
    if (!_deck) _deck = [[PlayingCardDeck alloc] init];
    return _deck;
}

- (void)setCardButtons:(NSArray *)cardButtons
{
    _cardButtons = cardButtons;
    for (UIButton *cardButton in cardButtons)
    {
        Card *card = [self.deck drawRandonCard];
        [cardButton setTitle:card.contents forState:UIControlStateSelected];
    }
}

@end


Deck.m

#import "Deck.h"

@interface Deck()

@property (strong, nonatomic) NSMutableArray *cards;

@end


@implementation Deck

- (NSMutableArray *)cards
{
    if (!_cards) _cards = [[NSMutableArray alloc] init];
    return _cards;
}

- (void)addCard:(Card *)card atTop:(BOOL)atTop
{
    if (atTop)
    {
        [self.cards insertObject:card atIndex:0];
    }
    else
    {
        [self.cards addObject:card];
    }
}

- (Card *)drawRandonCard
{
    Card *randomCard = nil;

    if (self.cards.count)
    {
        unsigned index = arc4random() % self.cards.count;
        randomCard = self.cards[index];
        [self.cards removeObjectAtIndex:index];
    }

    return randomCard;
}

@end


PlayingCardDeck.m

#import "PlayingCardDeck.h"
#import "PlayingCard.h"

@implementation PlayingCardDeck

- (id)init
{
    self = [self init];

    if (self)
    {
        for (NSString *suit in [PlayingCard validSuits])
        {
            for (NSUInteger rank=1; rank <= [PlayingCard maxRank]; rank++)
            {
                PlayingCard *card = [[PlayingCard alloc] init];
                card.suit = suit;
                card.rank = rank;
                [self addCard:card atTop:YES];
            }
        }
    }

    return self;
}

@end
4

1 に答える 1

4

PlayerCardDeck.m では、self = [self init]である必要がありますself = [super init]。それが無限ループの原因です。

于 2013-03-16T20:14:26.817 に答える