尝试创建一个带有日期选择器的弹出窗口控件,当我单击 UITextField 时会弹出该日期选择器

发布于 2024-12-07 07:47:26 字数 352 浏览 0 评论 0原文

所以我看到这个问题的答案是这样的,有人说“使用 TextFieldShouldBeginEditing 这是 UITextField 委托协议中的一个方法”

我已经在我的原始视图中使用了 popover 委托协议:

@interface AddChildViewController : UIViewController <UIPopoverControllerDelegate> {

然后我将 UITextField 作为该视图中的 IBOutlet。我是否必须创建一个仅包含 UITextField 的新视图和视图控制器?

请具体说明我应该将哪些内容放入哪个文件中。谢谢你!

So I've seen this question answered in such a way where someone says "use the TextFieldShouldBeginEditing which is a method in the UITextField delegate protocol"

I'm already using the popover delegate protocol in my original view:

@interface AddChildViewController : UIViewController <UIPopoverControllerDelegate> {

and then I have the UITextField as an IBOutlet in that view. Do I instead have to create a new view and viewcontroller that just contains the UITextField?

Please be specific about what I'm supposed to put in which file. Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

源来凯始玺欢你 2024-12-14 07:47:26

我知道现在回答已经太晚了,但就是这样。

  1. 您可以在一个类中实现多个协议

    eg: @interface AddChildViewController : UIViewController

  2. Interface Builder(或Storyboard)拖动委托将 textfield 的属性从 Interface Builder 添加到 AddChildViewController

  3. 在此执行所有调整大小并添加日期选择器或日历组件方法:

TextFieldShouldBeginEditing

// 已完成

I know its too late to answer but here it is.

  1. You can implement more than one protocols in a class

    eg: @interface AddChildViewController : UIViewController <UIPopoverControllerDelegate, UItextFieldDelegate>

  2. From Interface Builder (or Storyboard) drag the delegate property of textfield to the AddChildViewController

  3. Do all the resizing and adding a date picker or a calendar component in this method:

TextFieldShouldBeginEditing

//you are done

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