1、针对自己自定义的类:直接小写第一个字母
EventTableViewCell *eventTableViewCell;
2、针对苹果类库中的类
1)去头后小写第一个字母
CLLocationManager *locationManager;
NSManagedObjectContext *managedObjectContext;
2)用对象的用途名称+类名的核心进行命名
NSMutableArray *eventsArray; //events + Array
UIBarButtonItem *addButton; //add + Button
参考代码:官方例子 TaggedLocations