- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想在单击按钮时创建 uiview 的自定义子类 (SubCustomView),并在 SubCustomView 上添加 uitextview 类作为 subview 。当我启动 uitextview 时,我使用 initWithFrame:textContainer:
方法。当我使用这种方法时,项目崩溃了。当我使用 initWithFrame:
方法时,项目没有崩溃。我正在使用以下代码:
textContainer1 = [[NSTextContainer alloc] initWithSize:CGSizeMake(2, CGFLOAT_MAX)];
stringTextView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, frame.size.width, frame.size.height) textContainer:textContainer1];
//stringTextView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, frame.size.width, frame.size.height)];
stringTextView.keyboardAppearance = YES;
stringTextView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
stringTextView.scrollEnabled = YES;
stringTextView.backgroundColor = [UIColor redColor];
stringTextView.autocapitalizationType = UITextAutocapitalizationTypeWords;
stringTextView.delegate = self;
[self addSubview:stringTextView];
[stringTextView becomeFirstResponder];
NSString *sampleString=@"GPRisdoingfirst ios 7.0 project";
textStorage = [[NSTextStorage alloc] initWithString:sampleString];
layoutManager = [[CustomLayoutM alloc] init];//CustomLayoutM is subclass of `NSLayoutManager`
[textStorage addLayoutManager:layoutManager];
[textStorage addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Helvetica-Bold" size:30.0] range:NSMakeRange(0, [textStorage length])];
[layoutManager addTextContainer:textContainer1];
错误是:
由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[UITextView setKeyboardAppearance:]:无法识别的选择器发送到实例 0x93ab000”
首先抛出调用栈:
(
0 CoreFoundation 0x019706f4 __exceptionPreprocess + 180
1 libobjc.A.dylib 0x016f08b6 objc_exception_throw + 44
2 CoreFoundation 0x01a0d983 -[NSObject(NSObject) doesNotRecognizeSelector:] + 275
3 libobjc.A.dylib 0x01702959 -[NSObject forwardInvocation:] + 68
4 CoreFoundation 0x019607ea ___forwarding___ + 458
5 CoreFoundation 0x019605fe _CF_forwarding_prep_0 + 14
6 UIKit 0x006ff4b3 -[UITextInputTraits takeTraitsFrom:] + 1075
7 UIKit 0x006ffc2b +[UITextInputTraits traitsByAdoptingTraits:] + 83
8 UIKit 0x0063a659 -[UIKeyboardImpl takeTextInputTraitsFromDelegate] + 177
9 UIKit 0x0063acbb -[UIKeyboardImpl setDelegate:force:] + 1040
10 UIKit 0x0063a8a6 -[UIKeyboardImpl setDelegate:] + 48
11 UIKit 0x008e535d -[UIPeripheralHost(UIKitInternal) _reloadInputViewsForResponder:] + 640
12 UIKit 0x005c0d5a -[UIResponder(UIResponderInputViewAdditions) reloadInputViews] + 287
13 UIKit 0x005c064b -[UIResponder becomeFirstResponder] + 550
14 UIKit 0x004c4dab -[UIView(Hierarchy) becomeFirstResponder] + 114
15 UIKit 0x00b33e69 -[UITextView becomeFirstResponder] + 79
16 UIKit 0x004c4df8 -[UIView(Hierarchy) deferredBecomeFirstResponder] + 67
17 UIKit 0x004c4e8c -[UIView(Hierarchy) _promoteSelfOrDescendantToFirstResponderIfNecessary] + 115
18 UIKit 0x004c514e __45-[UIView(Hierarchy) _postMovedFromSuperview:]_block_invoke + 224
19 Foundation 0x014a453c -[NSISEngine withBehaviors:performModifications:] + 107
20 Foundation 0x01334395 -[NSISEngine withAutomaticOptimizationDisabled:] + 48
21 UIKit 0x004c4fcd -[UIView(Hierarchy) _postMovedFromSuperview:] + 313
22 UIKit 0x004d00d1 -[UIView(Internal) _addSubview:positioned:relativeTo:] + 1847
23 UIKit 0x004c35c1 -[UIView(Hierarchy) addSubview:] + 56
24 PracticeiOS7 0x000085a6 -[TextCurveView createTextViewMethod] + 518
25 PracticeiOS7 0x00008a9d -[TextCurveView panMethod:] + 1101
26 UIKit 0x007de61c _UIGestureRecognizerSendActions + 230
27 UIKit 0x007dd290 -[UIGestureRecognizer _updateGestureWithEvent:buttonEvent:] + 383
28 UIKit 0x007decfd -[UIGestureRecognizer _delayedUpdateGesture] + 60
29 UIKit 0x007e225d ___UIGestureRecognizerUpdate_block_invoke + 57
30 UIKit 0x007e21de _UIGestureRecognizerRemoveObjectsFromArrayAndApplyBlocks + 317
31 UIKit 0x007d88d8 _UIGestureRecognizerUpdate + 199
32 UIKit 0x004a6e9a -[UIWindow _sendGesturesForEvent:] + 1291
33 UIKit 0x004a7dba -[UIWindow sendEvent:] + 1030
34 UIKit 0x0047bb86 -[UIApplication sendEvent:] + 242
35 UIKit 0x0046635f _UIApplicationHandleEventQueue + 11421
36 CoreFoundation 0x018f996f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
37 CoreFoundation 0x018f92fb __CFRunLoopDoSources0 + 235
38 CoreFoundation 0x019163ce __CFRunLoopRun + 910
39 CoreFoundation 0x01915bf3 CFRunLoopRunSpecific + 467
40 CoreFoundation 0x01915a0b CFRunLoopRunInMode + 123
41 GraphicsServices 0x030fca27 GSEventRunModal + 192
42 GraphicsServices 0x030fc84e GSEventRun + 104
43 UIKit 0x00468f0b UIApplicationMain + 1225
44 PracticeiOS7 0x00009b8d main + 141
45 libdyld.dylib 0x02dec725 start + 0
)
libc++abi.dylib: terminating with uncaught exception of type NSException
最佳答案
您应该以正确的顺序初始化您的对象。
首先创建并附加NSTextStorage
、NSTextContainer
和NSLayoutManager
。然后创建 UITextView
并准备使用 NSTextContainer
。
// 1. Create and prepare NSTextContainer
textContainer1 = [[NSTextContainer alloc] initWithSize:CGSizeMake(2, CGFLOAT_MAX)];
NSString *sampleString=@"GPRisdoingfirst ios 7.0 project";
textStorage = [[NSTextStorage alloc] initWithString:sampleString];
layoutManager = [[CustomLayoutM alloc] init];//CustomLayoutM is subclass of `NSLayoutManager`
[textStorage addLayoutManager:layoutManager];
[textStorage addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Helvetica-Bold" size:30.0] range:NSMakeRange(0, [textStorage length])];
[layoutManager addTextContainer:textContainer1];
// 2. Create UITextView
stringTextView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, frame.size.width, frame.size.height) textContainer:textContainer1];
// 3. setup UITextView
stringTextView.keyboardAppearance = YES;
stringTextView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
stringTextView.autocapitalizationType = UITextAutocapitalizationTypeWords;
// …
关于ios - '-[UITextView 自动大写类型] : unrecognized selector sent to instance?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18158763/
我想知道这两者之间有什么不同 .myClass/DomElement .myotherclassinsidethatelement 和 .myClass/DomElement > .myothercl
使用 jQuery on() 版本 1.7。我通常这样绑定(bind)我的事件: $(".foo").on("click", function() { console.log("foo cli
我想找到与选择器匹配的所有元素,但如果它已经包含在匹配元素中则不查找。 $('#container').find('.child').not('.child .child'); 请注意,.child
我有一个看起来像这样的无序列表,但更广泛: Parent Category 2 Parent Category 2 Parent Category 3
这个问题在这里已经有了答案: CSS negation pseudo-class :not() for parent/ancestor elements (2 个答案) 关闭 4 年前。
我希望使用 CSS :not() 来定位 before 选择器。这可能吗? 示例: https://jsfiddle.net/uuq62b8d/ a.button:before { content
这有什么区别: $.each($('#myTable input[name="deleteItem[]"]:checked').do_something()); 还有这个: $('#myTable i
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我正在使用 UL LI 列表和 jQuery 创建一棵树。我使用了 jQuery 选择器 jQuery(li:has(ul)) 查找所有具有子节点的列表节点,然后向其添加单击事件。 jQuery(li
我真的不知道如何命名这两种方法,所以请原谅我这样调用它们。 字符串选择器 $("#myList li").eq(3); 函数选择器 $("#myList li:eq(3)"); 据我所知,他们都做同样
我有以下代码: .. 我正在使用以下 CSS 来排除具有“main-l tbl”类的表: table:not(.main-l .views-table) { .. } 我注
这个问题已经有答案了: 已关闭12 年前。 Possible Duplicate: What is the difference between $ and jQuery 我注意到使用“jQuery(
我有许多 css 选择器和许多选择器异常,所以我使用 :not 将它们排除在外... 示例(只是一些我不需要的选择器): [class*="-dashboard-"]:not([class$="-bi
CADisplayLink 有这个方法是有道理的,但我很好奇为什么 UIScreen 也会有它。 最佳答案 文档说屏幕提供的显示链接与该屏幕相关联。但是,查看官方文档,与任何屏幕都没有明显的关系;显示
我在这里阅读了关于 toArray() 的文档,并在控制台中对其进行了测试。我找不到在选择器上调用 toArray() 和调用选择器本身之间的区别。 两种方式都得到了完全相同的结果,这是一个与选择器匹
我有一个问题,为什么这两个代码片段不同。 $('#ctl00_DDMenu1_HyperLink1') //jQuery(a#ctl00_DDMenu1_HyperLink1 Default.asp
我想通过以下方式模拟我可以在 jQuery 中实现的目标$('.someClass:not(.hidden)') 我试过下面的代码。 $crawler->filter('someClass:not(.
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
我想通过以下方式模拟我可以在 jQuery 中实现的目标$('.someClass:not(.hidden)') 我试过下面的代码。 $crawler->filter('someClass:not(.
我想根据 Iterator::next 中当前枚举变体的某些属性更改枚举变体。我有两次尝试,都没有编译: enum Test { A(Vec), B, } impl Iterator
我是一名优秀的程序员,十分优秀!