没有显示 uitextview 的 uimenucontroller,通用应用程序 xcode 4
在模拟器上,我看到 UIMenucontroller 没有问题,但它不会在运行 iOs 4+ 的设备上进行测试。它是使用IB添加的标准uitextview。
我已将这些方法添加到作为委托的视图控制器中,但我认为它们不是必需的,因为我想要标准的菜单控制器、选择、复制等。更不用说它们没有被调用。
谢谢你的帮助
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
NSLog(@"Can perform action called");
BOOL answer = NO;
if (action == @selector(copy:))
{
answer = YES;
}
if (action == @selector(cut:))
{
answer = YES;
}
if (action == @selector(paste:))
{
answer = YES;
}
if (action == @selector(select:))
{
answer = YES;
}
if (action == @selector(selectAll:))
{
answer = YES;
}
return answer;
}
- (BOOL) canBecomeFirstResponder {
NSLog(@"can become first called");
return YES;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要添加手势识别器,或覆盖touchesEnded:withEvent:方法,并显示菜单控制器:
您还应该覆盖方法 -复制、剪切、粘贴等。
You need to add a gesture recognizer, or override the touchesEnded:withEvent: method, and display the menu controller:
You also should override the methods -copy,-cut,-paste, etc.