//// RIButtonItem.m// Shibui//// Created by Jiva DeVoe on 1/12/11.// Copyright 2011 Random Ideas, LLC. All rights reserved.//#import "RIButtonItem.h"@implementationRIButtonItem@synthesizelabel;@synthesizeaction;+(id)item{return[selfnew];}+(id)itemWithLabel:(NSString*)inLabel{RIButtonItem*newItem=[selfitem];[newItemsetLabel:inLabel];returnnewItem;}+(id)itemWithLabel:(NSString*)inLabelaction:(void(^)(void))action{RIButtonItem*newItem=[selfitemWithLabel:inLabel];[newItemsetAction:action];returnnewItem;}@end