//
// viewcontroller.m
// uitableview_編輯模式 //
// created by 朱立志 on 14-5-5.
//#import "viewcontroller.h"
@inte***ce
viewcontroller()
@property(nonatomic,strong)
nsmutablearray
*data;
@end
@implementation viewcontroller
- (void)viewdidload
}- (void)didreceivememorywarning
- (nsinteger)tableview:(uitableview *)tableview numberofrowsinsection:(nsinteger)section
#pragma mark 每當有乙個cell進入視野範圍內就會呼叫,返回當前這行顯示的cell
- (uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath
nsstring *title = self.data[indexpath.row] ;
cell.textlabel.text = title;
cell.detailtextlabel.text=
@"zlz";
nslog(@"%@",cell);
return cell;
}# pragma mark 新增模式
- (ibaction)addmodel:(id)sender
-(void) tableview:(uitableview *)tableview commiteditingstyle:(uitableviewcelleditingstyle)editingstyle forrowatindexpath:(nsindexpath *)indexpath
else
if(editingstyle == uitableviewcelleditingstyledelete)
}// 排序功能方法
-(void) tableview:(uitableview *)tableview moverowatindexpath:(nsindexpath *)sourceindexpath toindexpath:(nsindexpath *)destinationindexpath
#pragma mark 當tableview開啟編輯模式就會呼叫
-(uitableviewcelleditingstyle) tableview:(uitableview *)tableview editingstyleforrowatindexpath:(nsindexpath *)indexpath
#pragma mark 刪除模式
- (ibaction)delmodel:(id)sender
@end
python列表新增資料
迴圈 def aa arr for a in range 1000 print 列表追加 str timeit.timeit aa setup from main import aa number 10000 加法 def bb arr for a in range 1000 arr arr a p...
js陣列新增資料和刪除資料
1 push 向array的末尾新增若干元素 2 pop 函式 刪除陣列中的最後乙個資料 var arr 1 2,3 4 arr.push 6 7,8 push 壓棧 向陣列末尾新增元素 console.log arr arr 1,2,3,4,6,7,8 var arr1 1 2,3 4,5 6 a...
使用JDBC批量新增資料和刪除資料
直接上碼 1 批量新增資料 public class demo05 stmt.executebatch 執行批處理 conn.commit 提交事務 long end system.currenttimemillis system.out.println 插入20000行資料,耗時 end star...