0

嗨,我有一个代码,当我运行退出并说有一个断点

- (void)checkCollision{
    if(CGRectIntersectsRect(penny.frame, hand.frame))
    {
        [randomMain invalidate];
        [startButton setHidden:NO];

        pos= CGPointMake(0.0, 0.0);

        CGRect frame = [penny frame];
        frame.origin.x=137.0f;
        frame.origin.y=326.0;
        [penny setFrame:frame];     (the breakpoint is here)

        CGRect frame2 = [hand frame];
        frame2.origin.x=137.0f;
        frame2.origin.y=20.0;
        [hand setFrame:frame2];

        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"You Lose" message:[NSString stringWithFormat:@"He got the penny!"] delegate:nil cancelButtonTitle:@"Dismiss" otherButtonTitles:nil];
        [alert show];
        [alert release];
    }
}

有任何想法吗?我为草率的格式道歉 我是新来的网站,谢谢!

4

1 回答 1

0

有时断点与呈现的代码不同步。尝试转到断点窗口(Command + 6 或查看->导航器->显示断点导航器。

在该导航器中,您可能会看到活动断点。如果您可以找到错误的断点,请将其从列表中删除。否则,最好的办法是删除所有断点。

于 2013-09-16T03:16:29.793 回答