Skip to content

Instantly share code, notes, and snippets.

View rogchap's full-sized avatar
👋
Hi

Roger Chapman rogchap

👋
Hi
View GitHub Profile
@rogchap
rogchap / RCArrowControlLayer.h
Created August 26, 2013 02:17
Custom UIView animation with vector graphics.
#import <UIKit/UIKit.h>
@interface RCArrowControlLayer : CALayer
@property (nonatomic) CGFloat percentage;
@end
@rogchap
rogchap / RCDropdown.h
Created August 21, 2013 02:58
Simple native iOS dropdown using UITextFiled
#import <UIKit/UIKit.h>
@interface RCDropdown : UITextField
@property (nonatomic) id<UIPickerViewDelegate> pickerDelegate;
@property (nonatomic) id<UIPickerViewDataSource> pickerDataSource;
@end