0

このコードを機能させることができません。

指定された以下のステートメントのすぐ上で宣言された playpauseButton

UIButton *playpauseButton = [UIButton buttonWithType:UIButtonTypeCustom];

playpauseButtonインスタンス変数のローカル宣言を取得すると、次のステートメントの警告メッセージが非表示になります

playpauseButton addTarget:self action:@selector(playpauseAction:) forControlEvents:UIControlEventTouchUpInside];
playpauseButton.frame = CGRectMake(0, 0, 30, 30);
[playpauseButton setImage:[UIImage imageNamed:@"Play Icon.png"] forState:UIControlStateNormal];
[playpauseButton setImage:[UIImage imageNamed:@"pause.png"] forState:UIControlStateSelected];
UIBarButtonItem *play = [[UIBarButtonItem alloc] initWithCustomView:playpauseButton];

私が定義した後playpauseAction method

-(void)playpauseAction:(id)sender {    
if( playpauseButton.state == UIControlStateNormal ){
    [sender setImage:[UIImage imageNamed:@"pause.png"] forState:UIControlStateSelected];
[audioPlayer play];
self.timer = [NSTimer scheduledTimerWithTimeInterval:11.0
                                    target:self
                                    selector:@selector(displayviewsAction:)
                                    userInfo:nil
                                    repeats:NO];
}  else if (playpauseButton.state == UIControlStateSelected)
{
[sender setImage:[UIImage imageNamed:@"Play Icon.png"] forState:UIControlStateNormal];
[audioPlayer pause];
 [self pauseTimer];
 } else if (playpauseButton.state == UIControlStateNormal)
{
[sender setImage:[UIImage imageNamed:@"pause.png"] forState:UIControlStateSelected];
[audioPlayer play];
[self resumeTimer];}}

助けてください。

ありがとう。

4

1 に答える 1

3

の 2 つの宣言があることを示していますplaypauseButton。1 つはクラスのインターフェイス セクション (インスタンス変数) にあり、もう 1 つはローカル変数です。

これは実際のエラーではありませんが、必要な結果とは異なる結果が得られる可能性があることを警告が示しています。

于 2012-06-18T14:39:31.460 に答える