opfo / app

An iOS app for the EDA397 course made at Chalmers in the spring of 2013.
7 stars 1 forks source link

OPFUser's property websiteUrl falsely typed to NSString #10

Closed tdeekens closed 11 years ago

tdeekens commented 11 years ago

The property websiteUrl of OPFUser.h is set to type NSString as in:

@property (copy) NSString* websiteUrl;

Fetching a user and accessing that property showed that it's actually an NSUrl which is even better. I guess Mantle does the crazyness of being able to set an object to a different type than specified in the header-file.

This obviously blows up my little view typing to access that property as a string...

Cheers