vote up 0 vote down star
1

Hi

Im extending the UIButton Class to be able to set the font and color of the UINavigationBarButton ( from this code example: switch on the code )

I goes like this:

@interface NavBarButtonGrey : UIButton 
-(id)init;

@end


@implementation NavBarButtonGrey

-(id)init {
if(self = [super init]) {
    self.frame = CGRectMake(0, 0, 49.0, 30.0);
    self.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
    self.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;

    UIImage *image = [UIImage imageNamed:@"greyNavButton.png"];
    UIImage *stretchImage = 
    [image stretchableImageWithLeftCapWidth:15.0 topCapHeight:0.0];
    [self setBackgroundImage:stretchImage forState:UIControlStateNormal];
    self.backgroundColor = [UIColor clearColor];
    [self setTitleShadowColor:[UIColor blackColor] forState:UIControlStateNormal];
    self.titleShadowOffset = CGSizeMake(0, -1);
    self.titleLabel.font = [UIFont boldSystemFontOfSize:13];
}

return self;
}
@end

This is ok, but of course not very flexible. How do I incorporate using a typedef enum (like Apple does) for all the different colors, fonts and sizes I would like my custom button to conform to.

The only thing I can get out of the interface files from UIKit is that it is done like this:

typedef enum {
RGCustomNavBarButtonStyleBlue,
RGCustomNavBarButtonStyleGrey,
RGCustomNavBarButtonStyleBlack,
RGCustomNavBarButtonStyleGreen,
RGCustomNavBarButtonStyleRed, 
} RGCustomNavBarButtonStyle;

How to get from that and into a working implementation that takes font, size, color etc. from the values of the enum through the constructor(initWithStyle)?

Does one overload constructors in Objective C? multiple constructors?

Hope it makes sense and thank you for any help given:)

flag

To start, UINavigationBarButton doesn't exist. You probably meant UIBarButtonItem, which inherits from UIBarItem, which in turn inherits from NSObject. Subclassing UIButton isn't going to help you in this respect. – Jasarien Oct 29 at 11:26
Sorry I meant UIButton:) I do it like this: NavBarButtonGrey *addButton = [[NavBarButtonGrey alloc] init]; [addButton setTitle:@"Add" forState:UIControlStateNormal]; [addButton addTarget:self action:@selector(addStuff) forControlEvents:UIControlEventTouchUpInside]; UIBarButtonItem *addNavButton = [[UIBarButtonItem alloc] initWithCustomView:addButton]; self.navigationItem.rightBarButtonItem = addNavButton; With my custom NavBarButtonGrey and it works just fine? I couldn't find a way to tint the UIBarButtonIten so I decided to try and do a custom one that could be customized. – RickiG Oct 29 at 13:38

1 Answer

vote up 0 vote down check

You can have multiple constructors such as;

-(MyClass) initWithFont: (UIFont) font;
-(MyClass) initWithFonmt: (UIFont) font andColor: (UIColor) color;

etc.

Then call [super init] as the first line in each of your custom constructors.

link|flag
Thanks:) That looks like it. So I could go -(MyClass) initWithFont: (RGCustomNavBarButtonStyle) font; and pass it "RGCustomNavBarButtonStyleGreen" as the font because Im essentially making my own type with typedef. And then have a switch case inside the Class that defined the parameters before returning a button of type UIButton. Great:) Thanks again! – RickiG Oct 29 at 13:43
no problem glad to have helped! – ennuikiller Oct 30 at 12:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.