19 lines
448 B
Objective-C
19 lines
448 B
Objective-C
//
|
|
// UMComButton.h
|
|
// UMCommunity
|
|
//
|
|
// Created by luyiyuan on 14/10/9.
|
|
// Copyright (c) 2014年 Umeng. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UMComButton : UIButton
|
|
|
|
- (id)initWithNormalImageName:(NSString *)imageName target:(id)target action:(SEL)action;
|
|
- (id)initWithNormalImage:(UIImage *)image target:(id)target action:(SEL)action;
|
|
- (id)initWithNormalImage:(UIImage*)image;
|
|
- (void)setOrigin:(CGPoint)point;
|
|
|
|
@end
|