作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的“模型”类(当然还有构造函数)
@implementation Widget
@synthesize name;
@synthesize color;
- (id) init
{
if (self = [super init])
{
self.name = @"Default Name";
self.color = @"brown";
}
return self;
}
@end
#import <UIKit/UIKit.h>
#import "Widget.h"
@interface testerViewController : UIViewController {
IBOutlet UITextField *stuffField;
Widget *widget;
}
@property (nonatomic, retain) UITextField *stuffField;
@property (nonatomic, retain) Widget *widget;
- (IBAction)buttonPressed:(id)sender;
@end
#import "testerViewController.h"
@implementation testerViewController
@synthesize stuffField;
@synthesize widget;
- (IBAction)buttonPressed:(id)sender
{
stuffField.text = widget.name;
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
widget = [[Widget alloc] init];
}
return self;
}
最佳答案
尝试使用
-(void) viewDidLoad{} 方法来初始化你的数据
在您的界面类中使用 @class Widget 而不是 #import "Widget.h"
并在您的实现类中使用 #import "Widget.h"
并确保您进入您的 buttonPressed 处理程序!
关于cocoa-touch - 如何在 Iphone 上使用 Objective-C 在 Controller 中初始化自定义类/对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/641829/
我是一名优秀的程序员,十分优秀!