Skip to content

Instantly share code, notes, and snippets.

@hatapu
hatapu / BorderButton.h
Created January 23, 2016 01:38
角丸で枠線のボタンをハイライトで反転させる ref: http://qiita.com/hatapu/items/85d641c52e3a91bd26b8
@property (nonatomic) IBInspectable UIColor *normalBackgroundColor;
@property (nonatomic) IBInspectable UIColor *highlitedBackgroundColor;
@hatapu
hatapu / RoundedTextView.h
Created November 21, 2015 14:31
Rounded TextView
#import <UIKit/UIKit.h>
IB_DESIGNABLE
@interface RoundedTextView : UITextView
@property (nonatomic) IBInspectable CGFloat cornerRadius;
@property (nonatomic) IBInspectable UIColor *borderColor;
@property (nonatomic) IBInspectable CGFloat borderWidth;
@end
@hatapu
hatapu / BorderButton.h
Created November 21, 2015 02:46
Border Rounded UIButton
#import <UIKit/UIKit.h>
IB_DESIGNABLE
@interface BorderButton : UIButton
@property (nonatomic) IBInspectable CGFloat cornerRadius;
@property (nonatomic) IBInspectable UIColor *borderColor;
@property (nonatomic) IBInspectable CGFloat borderWidth;
@end