本文介绍了属性不符合协议的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我遇到问题让我的属性符合我自己的协议我的属性声明如下:
I am having problems getting my property to conform to my self made protocol my property is declared like this:
@property(assign)id <MainViewDatasource> datasource
我运行这个代码来测试它是否符合协议:
And I run this code to test if it conforms to the protocol:
if ([datasource conformsToProtocol:@protocol(MainViewDatasource)])
NSLog(@"datasource conforms to MainViewDatasource");
if(datasource == nil)
NSLog(@"datasource is nil");
在控制台中,数据源为nil。如何解决这个问题?
And in the Console it says that datasource is nil. How do I fix this?
推荐答案
如果不设置datasource属性,它将保持默认值0x0 (nil)。
If you don't set your datasource property, it will remain at the default value, 0x0 (nil).
这篇关于属性不符合协议的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!