24 lines
840 B
Objective-C
24 lines
840 B
Objective-C
//
|
|
// UMComBarButtonItem.h
|
|
// UMCommunity
|
|
//
|
|
// Created by luyiyuan on 14/10/9.
|
|
// Copyright (c) 2014年 Umeng. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "UMComButton.h"
|
|
|
|
@interface UMComBarButtonItem : UIBarButtonItem
|
|
|
|
@property (nonatomic, assign) CGRect itemFrame;
|
|
@property (nonatomic, strong) UMComButton *customButtonView;
|
|
- (id)initWithNormalImageNameWithBackItem:(NSString *)imageName target:(id)target action:(SEL)action;
|
|
- (id)initWithNormalImageName:(NSString *)imageName target:(id)target action:(SEL)action;
|
|
- (id)initWithNormalImageWithBackItem:(UIImage*)image target:(id)target action:(SEL)action;
|
|
- (id)initWithNormalImage:(UIImage*)image target:(id)target action:(SEL)action;
|
|
- (id)initWithTitle:(NSString *)title target:(id)target action:(SEL)action;
|
|
|
|
- (id)initWithCustomView:(UIView*)customView;
|
|
@end
|