如何将 xib 文件连接到 Objective C 中的头文件

发布于 2024-12-11 05:36:46 字数 390 浏览 0 评论 0原文

我在界面生成器中创建了一个自定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落墨 2024-12-18 05:36:46

您的变量需要声明为 IBOutlet

IBOutlet UITextField * text

Your variable needs to be declared as an IBOutlet:

IBOutlet UITextField * text

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文