ios捕获异常

@try 
Statements 
@catch (NSException *ex) { 
        UIAlertView *alert = [[UIAlertView alloc] 
                                     initWithTitle:[ex name] 
                                     message:[ex reason] 
                                     delegate:self 
                                     cancelButtonTitle:@"OK" 
                                     otherButtonTitles: nil]; 
                                     [alert show]; 
posted @ 2012-11-22 12:32  GreyWolf  阅读(129)  评论(0编辑  收藏  举报