如何将 xib 文件连接到 Objective C 中的头文件
我在界面生成器中创建了一个自定义 uialertview,其中包含一个 uitextfield 和两个 uibutton。 我创建了一个像这样的头文件:
#import <UIKit/UIKit.h>
@interface DialogWelcome : UIAlertView{
UITextField *text;
}
@property(nonatomic,retain) UITextField *text;
- (IBAction)ok;
- (IBAction)annulla;
@end
在界面生成器中,我找到了两种方法 IBAction,并且可以与 uibutton 连接,但我找不到文本。我将文件所有者的自定义类设置为名称 .m 和 .h。我能做些什么?
i have a custom uialertview created in interface builder with an uitextfield and two uibutton.
I've created an header file like this:
#import <UIKit/UIKit.h>
@interface DialogWelcome : UIAlertView{
UITextField *text;
}
@property(nonatomic,retain) UITextField *text;
- (IBAction)ok;
- (IBAction)annulla;
@end
in interface builder i find the two method IBAction and i can connect with uibutton, but i don't find text. I set the file owner's custom class with name of .m and .h. What can i do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的变量需要声明为
IBOutlet
:IBOutlet UITextField * text
Your variable needs to be declared as an
IBOutlet
:IBOutlet UITextField * text