我的iPhone如下所示。
我想要的是以编程方式点击Refresh
按钮**,点击Delete
按钮**。
注意:我还为Refresh
按钮提供了标记。
答案 0 :(得分: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.
}