作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在使用ARC的项目中使用TPMultiLayoutViewController,但遇到以下错误:-
ARC不允许将Objective-C指针隐式转换为“const void *”
我真的不确定如何解决这个问题。需要显式转换吗?我该怎么办?
- (void)addAttributesForSubviewHierarchy:(UIView*)view associatedWithSubviewHierarchy:(UIView*)associatedView toTable:(NSMutableDictionary*)table {
[table setObject:[self attributesForView:view] forKey:[NSValue valueWithPointer:associatedView]];
if ( ![self shouldDescendIntoSubviewsOfView:view] ) return;
for ( UIView *subview in view.subviews ) {
UIView *associatedSubView = (view == associatedView ? subview : [self findAssociatedViewForView:subview amongViews:associatedView.subviews]);
if ( associatedSubView ) {
[self addAttributesForSubviewHierarchy:subview associatedWithSubviewHierarchy:associatedSubView toTable:table];
}
}
}
最佳答案
您因为以下原因而收到错误:
[NSValue valueWithPointer:associatedView]
valueWithPointer:
采用
const char *
。您可以通过执行@ user1139069建议的方法来解决此问题:
[NSValue valueWithPointer:(__bridge void *)associatedView]
关于objective-c - TPMultiLayoutViewController的ARC转换; ARC不允许将Objective-C指针隐式转换为“const void *”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9017676/
我是一名优秀的程序员,十分优秀!