Fixed inconsistencies in class implementation and protocol naming

This commit is contained in:
Dave Caunt 2013-09-04 12:58:06 +01:00
parent 147cc58761
commit 1e6aff4a7b

View File

@ -223,7 +223,7 @@ int main (int argc, const char * argv[])
// }
// -/+ (type) Method declarations;
// @end
@interface MyClass : NSObject <MyCustomProtocol>
@interface MyClass : NSObject <MyProtocol>
{
int count;
id data;
@ -248,7 +248,7 @@ int main (int argc, const char * argv[])
// Implement the methods in an implementation (MyClass.m) file:
@implementation UserObject
@implementation MyClass
// Call when the object is releasing
- (void)dealloc