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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Khmurets <subzero@mapswithme.com>2014-01-11 15:55:57 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:10:10 +0300
commita4b54f1f354e589ddc1889d6aa4e80e2cf980f1a (patch)
treeba81cb36651660d6ebec03fccf44d9ad79a27e15 /iphone/Maps/Classes/CircleView.h
parentfedf07299ef4208236c15c3c3c836d2a4d36f3dc (diff)
[ios] Project now supports ARC
Diffstat (limited to 'iphone/Maps/Classes/CircleView.h')
-rw-r--r--iphone/Maps/Classes/CircleView.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/iphone/Maps/Classes/CircleView.h b/iphone/Maps/Classes/CircleView.h
index 8735382246..f53981e45a 100644
--- a/iphone/Maps/Classes/CircleView.h
+++ b/iphone/Maps/Classes/CircleView.h
@@ -1,7 +1,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;
+
+- (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