码迷,mamicode.com
首页 > 其他好文 > 详细

Xcode升级了6.3 出现的警告:Auto property synthesis will not synthesize property

时间:2015-04-10 15:08:59      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

1.  Auto property synthesis will not synthesize property ‘title‘; it will be implemented by its superclass, use @dynamic to acknowledge intention

    这是说编译器自动给属性title合成getter和setter的时候将会在它的父类上实现,也就是说坑爹的xcode6.3升级后ios8.3版本的UIViewController里有一个title属性,现在它不知道到底是哪一个title.

    这不是我们想要的,所以添加 @dynamic告诉编译器这个属性是动态的,动态的意思是等你编译的时候就知道了它只在本类合成;

    解决:

 

@implementation SearchResultViewController

@dynamic title;

 

Xcode升级了6.3 出现的警告:Auto property synthesis will not synthesize property

标签:

原文地址:http://www.cnblogs.com/mohe/p/4414442.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!