如何在UITextView中启用光标移动

时间:2013-04-10 02:36:44

标签: ios uitextview

我用实际创建UItextView,当我点击在UITextView中移动光标时,它不起作用。但它使用IB工作。我是否应该为UItextView或UIView设置一些属性?

UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0,320, 460)];

textView.userInteractionEnabled = YES;
textView.editable = YES;
textView.multipleTouchEnabled =YES;

[self.view addSubview:textView];
textView.delegate = self;

我发现默认长按不起作用。

1 个答案:

答案 0 :(得分:0)

我在自定义单元格中为手势识别器添加subView时遇到问题。 当我阻止它或移动到后台时它已经开始工作了:

contentView.insertSubview(view, atIndex: 0)

使用手势识别器查看视图。