无法正常工作的简单程序。
我想要一个带有一些按钮的视图,点击后会显示一些文字。
我把它放在我的.h文件中
ButtonViewController.h
#import <UIKit/UIKit.h>
@interface NeutralizerViewController : UIViewController {
UILabel *textLabel;
UILabel *detailLabel;
}
@property (nonatomic, retain) IBOutlet UILabel *textLabel;
@property (nonatomic, retain) IBOutlet UILabel *detailLabel;
- (IBAction)bigButtonTapped:(id)sender;
我把它放在我的.m文件中
ButtonViewController.m
#import "ButtonViewController.h"
@implementation ButtonViewController
@synthesize textLabel;
@synthesize detailLabel;
- (IBAction)bigButtonTapped:(id)sender;
{
NSLog(@"Tapped the 'Big' button");
textLabel.text = @"text title for big button";
detailLabel.text = @"text details big button";
}
显示日志语句,但标签的文本未显示。
我已经在iOS上工作了一段时间......我缺少什么?
感谢您的帮助。