尝试创建一个带有日期选择器的弹出窗口控件,当我单击 UITextField 时会弹出该日期选择器
所以我看到这个问题的答案是这样的,有人说“使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道现在回答已经太晚了,但就是这样。
您可以在一个类中实现多个协议
eg:
@interface AddChildViewController : UIViewController
从
Interface Builder
(或Storyboard
)拖动委托将textfield
的属性从Interface Builder
添加到AddChildViewController
在此执行所有调整大小并添加日期选择器或日历组件方法:
TextFieldShouldBeginEditing
// 已完成
I know its too late to answer but here it is.
You can implement more than one protocols in a class
eg:
@interface AddChildViewController : UIViewController <UIPopoverControllerDelegate, UItextFieldDelegate>
From
Interface Builder
(orStoryboard
) drag the delegate property oftextfield
to theAddChildViewController
Do all the resizing and adding a date picker or a calendar component in this method:
TextFieldShouldBeginEditing
//you are done