add fgView
parent
dd962f21de
commit
752c8d0640
|
@ -90,7 +90,7 @@ static NSString *kUserAnnotationId = @"FATUserAnnotationViewId";
|
|||
}
|
||||
///bgView
|
||||
UIView* bgView = [[UIView alloc] initWithFrame:self.view.bounds];
|
||||
bgView.backgroundColor = isDark ? UIColor.orangeColor : UIColor.orangeColor;
|
||||
bgView.backgroundColor = isDark ? UIColor.blackColor : UIColor.whiteColor;
|
||||
[self.view addSubview:bgView];
|
||||
|
||||
self.view.backgroundColor = isDark ? UIColor.blackColor : UIColor.whiteColor;
|
||||
|
@ -172,6 +172,10 @@ static NSString *kUserAnnotationId = @"FATUserAnnotationViewId";
|
|||
});
|
||||
};
|
||||
[self.view addSubview:self.slideView];
|
||||
|
||||
UIView* fgView = [[UIView alloc] initWithFrame:self.view.bounds];
|
||||
fgView.backgroundColor = UIColor.greenColor;
|
||||
[self.view addSubview:fgView];
|
||||
}
|
||||
|
||||
- (void)locationOnClick {
|
||||
|
|
Loading…
Reference in New Issue