想象我的类声明如下所示:
@interface MapViewController : UIViewController <MKMapViewDelegate>
{
}
@property (nonatomic,weak) IBOutlet MKMapView *mapV;
@end
这是实现:
#import "MapViewController.h"
#import <CoreLocation/CoreLocation.h>
@interface MapViewController ()
@end
@implementation MapViewController
@synthesize mapV;
- (void)viewDidLoad
{
[super viewDidLoad];
[mapV setShowsUserLocation:YES];
}
我的问题是,通过使用mapV
上述(in viewDidLoad
)我指的是实例变量还是调用属性?(在这种情况下,引用实例变量的正确方法是什么?)。