//
|
// PBAnnotationView.m
|
// IphoneBIMe
|
//
|
// Created by zjf on 2020/5/13.
|
// Copyright © 2020 ProBIM. All rights reserved.
|
//
|
|
#import "PBAnnotationView.h"
|
#import "PBProjectModel.h"
|
@implementation PBAnnotationView
|
- (void)setProjectModel:(PBProjectModel *)projectModel {
|
_projectModel = projectModel;
|
}
|
/*
|
// Only override drawRect: if you perform custom drawing.
|
// An empty implementation adversely affects performance during animation.
|
- (void)drawRect:(CGRect)rect {
|
// Drawing code
|
}
|
*/
|
|
@end
|