UItextView中的EXC_BAD_ACCESS Cmd + Left / Right

时间:2015-07-14 07:35:06

标签: ios crash uitextview bluetooth-keyboard

崩溃的步骤:

  • сreate“简单视图应用程序”。
  • 添加textView并为其设置一些属性(您可以在下面的代码中看到它)。
  • 光标应位于字段中心的点之间。(您应该添加一个长字符串以查看中心的点)
  • 连接蓝牙键盘 设备。
  • 将光标移动到字段的中心
  • 按Cmd +向左/向右
  • 始终崩溃

这是我死记硬背的所有代码:

#import "ViewController.h"

@interface ViewController ()

@property (weak, nonatomic) IBOutlet UITextView *textView;

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.textView.textContainer.maximumNumberOfLines = 1;
    self.textView.textContainer.lineBreakMode = NSLineBreakByTruncatingMiddle;
}

@end

崩溃信息: 日志中没有任何内容,只是: 在UITextView错误:内存读取失败为0x0

我无法在stackoverflow或互联网上找到任何关于此问题的信息。有没有人有任何想法?或者只是向苹果汇报?

经过测试:

  • iPad 4 iOS 8.3(12F69)
  • iPad mini 9 betta 3(13A4293g)

coursor should be between points in the center of the field

0 个答案:

没有答案