所以我想做的是为我的应用程序创建一个记事本样式。我只想让它像苹果现有的记事本一样工作在 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;
}