处理尝试捕获

时间:2013-05-21 07:44:43

标签: iphone exception-handling try-catch xcode4.5

我的项目是面向服务的,一切都来自服务。我在UILabel,tableviews等加载数据。当特定文本不是来自服务然后我不想在那里显示null,既不显示该视图。所以我想要重定向一些显示错误图像的其他视图。但@try,@ catch无法正常工作。

-(void)viewDidLoad
{
  //activity indicator code
  [self performSelector:@selector(threadStartAnimating) withObject:nil afterDelay:0.1];

  NSString *name=[NSString stringWithFormat:@"%@", self.provName];
  CGSize constraint1 = CGSizeMake(250, 2000.0f);
  CGSize size1 = [name sizeWithFont: [UIFont fontWithName:@"Helvetica-Bold" size:18] constrainedToSize:constraint1 lineBreakMode:UILineBreakModeWordWrap];
  self. pName =[[UILabel alloc] init];
  @try {
    if([name length]>0
    {
      self.pName.text=[NSString stringWithFormat:@"%@" ,name];
    }
    else
    {
      NSException *exception = [NSException
                                  exceptionWithName:@""
                                  reason:@""
                                  userInfo:nil];
      @throw exception;
    } 
  }

  @catch (NSException *exception) {
    ErrorView *errorView=[[ErrorView alloc]initWithNibName:@"ErrorView" bundle:nil];
    if([[[UIDevice currentDevice]systemVersion]floatValue]<5.0)
    {
      [self presentModalViewController:errorView animated:NO];
    }
    else
    {
      [self presentViewController:errorView animated:NO completion:nil];
    }
    [errorView release];
  }
}

- (void) threadStartAnimating
{
   //other code

}

但即使文本长度为零,它也不会重定向到errorView。而当前视图中的其余代码正在执行。

我无法理解我哪里出错了?

0 个答案:

没有答案