-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBPBAnnotationCalloutView.h
29 lines (23 loc) · 1.06 KB
/
BPBAnnotationCalloutView.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
// BPBAnnotationCalloutView.h
// Origins
//
// Created by billy bray on 5/12/14.
// Copyright (c) 2014 Spartan Systems. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface BPBAnnotationCalloutView : UIView
@property (weak, nonatomic) IBOutlet UIImageView *annotationCalloutImageView;
@property (weak, nonatomic) IBOutlet UILabel *annotationCalloutLabel;
@property (weak, nonatomic) IBOutlet UILabel *annotationShowAllPinsLabel;
@property (weak, nonatomic) IBOutlet UILabel *annotationSeeStorePromotionsLabel;
@property (weak, nonatomic) IBOutlet UILabel *annotationBuyOriginGoodsLabel;
@property (weak, nonatomic) IBOutlet UIButton *annotationShowAllPinsButton;
@property (weak, nonatomic) IBOutlet UIButton *annotationSeeStorePromotionsButton;
@property (weak, nonatomic) IBOutlet UIButton *annotationBuyOriginGoodsButton;
@property (weak, nonatomic) IBOutlet UIButton *annotationShowDetailsButton;
- (IBAction)showAddidtionalDetails:(id)sender;
- (IBAction)showAllPins:(id)sender;
- (IBAction)seeStorePromotions:(id)sender;
- (IBAction)buyOriginGoods:(id)sender;
@end