想象我的類的聲明看起來是這樣的:參考實例變量或屬性
@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];
}
我的問題是,通過如上(在viewDidLoad
)使用mapV
我是引用實例變量或調用屬性? (在這種情況下,引用實例變量的正確方法是什麼?)。
你應該接受你的問題還是人的任何答覆將停止回答您 –