Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CircleView.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f53981e45ae5f9fe8facb95766f932300ba84484 (plain)
1
2
3
4
5
6
7
8
9
#import <UIKit/UIKit.h>

@interface CircleView : UIView

- (id)initWithFrame:(CGRect)frame andColor:(UIColor *)color;
+ (UIImage *)createCircleImageWith:(CGFloat)diameter andColor:(UIColor *)color;
+ (UIImage *)createCircleImageWith:(CGFloat)diameter andColor:(UIColor *)color andSubview:(UIView *)view;

@end