如何获取警报消息?

时间:2012-08-07 05:32:44

标签: iphone objective-c ios xcode4.2

我有这个代码,实际上我想在用户点击删除消息时发出警告消息?我怎么能这样做..

#pragma mark -
#pragma mark Table Data Source Methods

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{


    return [list count];

}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  static NSString *DeleteMeCellIdentifier = @"DeleteMeCellIdentifier";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:DeleteMeCellIdentifier];
    if (cell==nil) {

        cell =  [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:DeleteMeCellIdentifier];
                    }

    NSInteger row = [indexPath row];
    cell.textLabel.text = [self.list objectAtIndex:row];
    return cell;

   }

#pragma mark -
#pragma mark Table View Data Source Methods

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

    NSUInteger row = [indexPath row];
    [self.list removeObjectAtIndex:row];
    [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];


}

2 个答案:

答案 0 :(得分:3)

请尝试以下代码:

- (void)tableView:(UITableView *)tableView commitEditingStyle:
(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{

 if (editingStyle == UITableViewCellEditingStyleDelete){
     UIAlertView *alert=[[UIAlertView alloc] initWithTitle:@"Alert" message:[NSString 
     stringWithFormat:@"deleted row no. %@",indexPath.row]  delegate:nil 
     cancelButtonTitle:@"Ok" otherButtonTitles: nil];
     [alert show];
     [alert release];
 }
}

答案 1 :(得分:0)

你可以试试这个:

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    NSUInteger row = [indexPath row];
    [self.list removeObjectAtIndex:row];
    [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];

UIAlertView *alert=[[UIAlertView alloc] initWithTitle:@"Alert" message:[NSString stringWithFormat:@"You have deleted row no. %@",indexPath.row]  delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles: nil];
        [alert show];


}
相关问题