如果我的 url 为空,我应该将 url 变量分配为空..我已经尝试过但仍然没有在我的 IF 语句中输入。我什至尝试过这个if([url isEqualToString:@""])
但它徒劳无功下面是代码
-(void)newView:(NSString *)title Description:(NSString *)desc URL:(NSString *)url{
self.tblTwitter.userInteractionEnabled=NO;
self.tblFacebook.userInteractionEnabled=NO;
if (![url isEqualToString:@""])
{
//
NSLog(@"the perfect Value:%@",url);
// url=@"boom";
}
webView =[[UIWebView alloc]initWithFrame:CGRectMake(15, 25, 190, 190)];
webView.backgroundColor=[UIColor clearColor];
webView.delegate=self;
webView.opaque = NO;