#import // Custom view which drows an arrow @interface CompassView : UIView // Rotation angle in radians (decart system) @property (nonatomic, assign) float angle; // NO by default - do not display anything // If set to YES - use angle to display the arrow @property (nonatomic, assign) BOOL showArrow; @property (nonatomic, retain) UIColor * color; @end