添加底部工具欄和UITableViewCell的滑動刪除
目前創(chuàng)新互聯(lián)已為上1000+的企業(yè)提供了網(wǎng)站建設、域名、虛擬主機、網(wǎng)站托管、服務器租用、企業(yè)網(wǎng)站設計、鳳岡網(wǎng)站維護等服務,公司將堅持客戶導向、應用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。一.添加底部工具欄
在工具欄上設置圖標時可以使用系統(tǒng)自帶圖標也可以使用自定義圖標,下面分別介紹這兩種方法:
1.使用系統(tǒng)自帶圖標(編輯圖標)
UIBarButtonItem *editItem = [[UIBarButtonItemalloc] initWithBarButtonSystemItem:UIBarButtonSystemItemComposetarget:selfaction:@selector(editEventClick)];
2.使用自定義圖標(刪除圖標)
UIBarButtonItem *deleteItem = [[UIBarButtonItemalloc] initWithImage:[UIImagep_w_picpathNamed:@"ic_delete.png"] style:UIBarButtonItemStylePlaintarget:selfaction:@selector(deleteEventClick)];
工具欄提示:
1.固定空間可以擁有寬度-----在所有UIBarButtonItem’中,只有UIBarButtonSystemItemFixedSpace條目可以被分配一個寬度,因此,創(chuàng)建空間條目,設置其寬度,然后在將其添加到條目列中。
UIBarButtonItem *fixItem1 = [[UIBarButtonItemalloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpacetarget:nilaction:nil];
fixItem1.width = 125;
NSArray *arrayItem = [NSArrayarrayWithObjects:fixItem1, editItem,fixItem2,deleteItem,nil];
[selfsetToolbarItems:arrayItem];
此處編輯圖標是自定義的圖片,刪除圖標是系統(tǒng)自帶,在截圖中可以看出二者的區(qū)別
運行之后效果圖如下:
2.使用一個靈活空間進行左或右對齊-----在條目列表中開始添加一個’ UIBarButtonSystemITemFlexibleSpace會使所有剩余條目右對齊。在末尾添加一個,則左對齊,使用兩個UIBarButtonSystemItemFlexibleSpace,一個在開頭,一個添加在末尾,會使剩余條目居中對齊。
UIBarButtonItem *fixItem1 = [[UIBarButtonItemalloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpacetarget:nilaction:nil];
NSArray *arrayItem = [NSArrayarrayWithObjects:fixItem1,deleteItem,fixItem2,editItem,fixItem2,nil];
[selfsetToolbarItems:arrayItem];
運行之后效果圖如下:
(此處編輯圖標和刪除圖標都是系統(tǒng)自帶)
二.滑動刪除
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
returnYES;
}
//定義編輯樣式
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableVieweditingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
returnUITableViewCellEditingStyleDelete;
}
//進入編輯模式
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyleforRowAtIndexPath:(NSIndexPath *)indexPath {
//code
}
啟用上面兩個代理,并增加數(shù)據(jù)刪除操作:
運行之后效果如下:
若讓其左滑刪除,則:(核心代碼如下)
//取消TableView的右滑,保留左滑
UISwipeGestureRecognizer *swipeRight =[[UISwipeGestureRecognizer alloc]initWithTarget:self action:nil];
swipeRight.direction =UISwipeGestureRecognizerDirectionRight;
[self. tableView addGestureRecognizer:swipeRight];
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
新聞標題:IOS--添加底部工具欄和UITableViewCell的滑動刪除-創(chuàng)新互聯(lián)
網(wǎng)頁網(wǎng)址:http://jinyejixie.com/article22/csohjc.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、營銷型網(wǎng)站建設、域名注冊、網(wǎng)頁設計公司、網(wǎng)站設計、關鍵詞優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容