我正在开发一个iPhone应用程序,当用户摇动手机时会从表格视图中删除行。我创建了一个基于导航的项目。现在,当用户摇动iPhone时,我希望导航栏的标题更改为“删除”,并在同一视图中显示导航栏上的删除按钮。否则,当用户选择特定行时,它应移动到下一个视图。我写了以下代码,但它不起作用。请帮帮我。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (isShaked == NO)
{
//logic to move to next view goes here.
}
else
{
self.title = @"Delete Rows";
delete=[[UIBarButtonItem alloc] initWithTitle:@"Delete rows" style:
UIBarButtonItemStyleBordered target:self action:@selector(deleteItemsSelected)] ;
self.navigationItem.rightBarButtonItem=self.delete;
MyTableCell *targetCustomCell = (MyTableCell *)[tableView cellForRowAtIndexPath:indexPath];
[targetCustomCell checkAction];
[self.tempArray addObject: [myModal.listOfStates objectAtIndex:indexPath.row]];
//[delete addTarget:self action:@selector(deleteItemsSelected:) forControlEvents:UIControlEventTouchUpInside];
self.tempTableView = tableView;
}
}
-(void)deleteItemsSelected
{
[myModal.listOfStates removeObjectsInArray:tempArray];
[tempTableView reloadData];
}
checkAction
方法是一种自定义单元格方法,用于在所选行上添加勾号。
答案 0 :(得分:0)
为了检查手机是否被震动,您的班级必须使用UIAccelerometerDelegate协议。
例如:
@interface myTableViewClass : UITableView <UIAccelerometerDelegate>
然后,您需要能够判断手机何时被震动(我在viewDidLoad中使用此功能):
[[UIAccelerometer sharedAccelerometer] setDelegate:self];
[[UIAccelerometer sharedAccelerometer] setUpdateInterval:0.1];
一旦用户摇动手机,你就可以用这种方法发挥你的魔力:
- (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration
{
if(fabsf(acceleration.x) > 2.2 || fabsf(acceleration.y) > 2.2 || fabsf(acceleration.z) > 2.2){
//The user has shaken the iPhone
}
}
您可以明显更改间隔以更频繁地检查并更改加速度计上的参数:didAccelerate方法以满足您的需求。
答案 1 :(得分:0)
检查这些方法/ API:
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event
- (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event
这些是为动作识别提供的事件处理程序。在使用这些文档之前先阅读文档。