2014-02-25 91 views
0

我的应用程序有问题,所以当我把这个代码放在InfoViewController中,我运行应用程序时,视图看起来是空的。我有一个表格视图设置为静态单元格,3个部分,风格与每个部分的标题分组,第一个单元格包含一个文本字段,我用谷歌搜索字段和一个搜索按钮,第二个和第三个包含一个label.I已连接所有文本字段按钮和故事板文件中的标签以及文件所有者中的委托。我应该使用其他方法吗? 感谢您的意见。表格视图控制器与静态单元格

#import <UIKit/UIKit.h> 

@interface InfoViewController : UIViewController <UINavigationControllerDelegate> 

@property (weak, nonatomic) IBOutlet UITextField *googleSearchTextField; 

@property (weak, nonatomic) IBOutlet UIButton *searchButton; 

@property (weak, nonatomic) IBOutlet UILabel *Label1; 

@property (weak, nonatomic) IBOutlet UILabel *Label2; 

-(IBAction)googleSearch; 

@end 





#import "InfoViewController.h" 

@end 

@implementation InfoViewController 

@synthesize googleSearchTextField; 
@synthesize searchButton; 
@synthesize Label1; 
@synthesize Label2; 

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 
{ 
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; 
if (self) { 
    // Custom initialization 
} 
return self; 
} 

- (void)viewDidLoad 
{ 
[super viewDidLoad]; 


self.Label1.text = @“Label1”; 
self.Label2.text = @“Label2”; 

} 

- (void)didReceiveMemoryWarning 
{ 
[super didReceiveMemoryWarning]; 
// Dispose of any resources that can be recreated. 
} 

- (BOOL)textFieldShouldReturn:(UITextField*)textField 
{ 
[textField resignFirstResponder]; 
return YES; 
} 

-(IBAction)googleSearch 
{ 
NSString *searchString=googleSearchTextField.text; 
NSString *urlAdress = [NSString stringWithFormat:@"http://www.google.com/search?q=%@",   
searchString]; 
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlAdress]]; 
} 


@end 

回答

相关问题