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 回答