//// UIBarButtonItem+Create.m// ItcastWeibo//// Created by yz on 14/11/5.// Copyright (c) 2014年 iThinker. All rights reserved.//#import "UIBarButtonItem+Create.h"@implementationUIBarButtonItem(Create)+(instancetype)barButtonItemWithImage:(NSString*)imageNamehighImage:(NSString*)highImageNametarget:(id)targetaction:(SEL)action{UIButton*button=[UIButtonbuttonWithType:UIButtonTypeCustom];button.bounds=CGRectMake(0,0,30,30);[buttonsetImage:[UIImageimageNamed:imageName]forState:UIControlStateNormal];[buttonsetImage:[UIImageimageNamed:highImageName]forState:UIControlStateHighlighted];[buttonaddTarget:targetaction:actionforControlEvents:UIControlEventTouchUpInside];return[[UIBarButtonItemalloc]initWithCustomView:button];}@end