Reputation: 769
Since I've been using XCode 6 I got some new warnings which I don't quite understand:
Here the line its related to:
@property (nonatomic,retain) IBOutlet UITextView *description;
Upvotes: 0
Views: 280
Reputation: 57060
NSObject
has a property with the same name, but a different type - NSString
, which you are overriding with your own declaration. Change your property name to solve the problem.
Upvotes: 3