我有如下 iPhone。
我想要的是单击Refresh
按钮Delete
**以编程方式**单击按钮。
注意:我也为Refresh
按钮提供了标签。
我有如下 iPhone。
我想要的是单击Refresh
按钮Delete
**以编程方式**单击按钮。
注意:我也为Refresh
按钮提供了标签。
我假设你有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.
}