我有iPhone如下。如何點擊/按導航條上的酒吧按鈕編程方式
我要的是點擊一下按鈕Delete
**編程Refresh
按鈕**。
說明:我已經提供了標籤也Refresh
按鈕。
任何想法/建議將不勝感激。
我有iPhone如下。如何點擊/按導航條上的酒吧按鈕編程方式
我要的是點擊一下按鈕Delete
**編程Refresh
按鈕**。
說明:我已經提供了標籤也Refresh
按鈕。
任何想法/建議將不勝感激。
我認爲u有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.
}
我相信相同的按鈕不能有Action和屬性**兩個** ..所以我不能給名稱刷新按鈕爲'btnRefresh'。 –
我沒有得到在評論中寫的東西。 –
什麼是'btnRefresh'。它的屬性連接到刷新按鈕? –
你爲什麼不初始化的rightbarbutton項目有一個UIButton和它的點擊進行選擇?你可以隨時調用它的方法 – amar