だから私がやろうとしているのは、アプリにメモ帳スタイルを追加することです。私が望むのは、リンゴの既存のメモ帳とまったく同じように機能し、右上の「追加」ボタンをクリックすると、書き込み可能な新しいメモが作成され、完了をクリックするとメモがセルに追加されることだけですUITableView で。
私はすでに UITableView を持っており、すべてがセットアップされています。このアクションを実行する方法を知る必要があるだけです
-(IBAction)noteAdd:(id)sender{ }
そして、そのボタンをクリックすると、上で説明したことが実行されます。
どうすればこれを行うことができますか?私は少し迷っています。
ところで、TableView をシーンに追加する方法です。
//tableview datasource delegate methods
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return cameraArray.count;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
if(cell == nil){
cell = [[CustomCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
}
NSEnumerator *enumerator = [cameraArray objectEnumerator];
id anObject;
NSString *cellName = nil;
while (anObject = [enumerator nextObject]) {
cellName = anObject;
}
//static NSString *cellName = [cameraArray.objectAtIndex];
cell.textLabel.text = [NSString stringWithFormat:cellName];
return cell;
}