0

私は以下のようにiPhoneを持っています。

ここに画像の説明を入力してください

私が欲しいのはRefresh、ボタンをクリックしてDelete**プログラムで**ボタンをクリックすることです。

注:Refreshボタンにもタグを付けました。

4

1 に答える 1

0

私はあなたがdelete and refresh actions言っていると思います

 -(IBAction)deleteAction:(id)sender 
 -(IBAction)refreshAction:(id)sender:

今、delete action call refresh action単純にこのように:

-(IBAction)deleteAction:(id)sender
{
    [self refreshAction:btnRefresh]; //provide refresh action along with refersh button
    //I mean here act according to refresh method.
}
于 2013-01-10T08:29:24.657 に答える