I am a Jr Software Developer, can I just change the (unsigned) to (NSUInteger) or will to create problems later?
- (unsigned)retainCount
{
return UINT_MAX; //denotes an object that cannot be released
}
warning said
MKStoreManager.m:88:1: Conflicting return type in implementation of 'retainCount': 'NSUInteger' (aka 'unsigned long') vs 'unsigned int'
I found a previous definition
- (NSUInteger)retainCount OBJC_ARC_UNAVAILABLE;