Что означает эта строка кода?
UIButton* backButton = (UIButton *) [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"BackButtonTopBar.png"]];
Если вам нужно создать кнопку, вам нужно сделать следующее.
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
и затем установите для него фоновое изображение.
Но я предпочитаю создать расширение категории для UIBarButtonItem
, как показано ниже
//UIBarButtonItem+YourPreferredName.h
+ (UIBarButtonItem*)barItemWithImage:(UIImage*)image title:(NSString*)title target:(id)target action:(SEL)action;
//UIBarButtonItem+YourPreferredName.m
+ (UIBarButtonItem*)barItemWithImage:(UIImage*)image title:(NSString*)title target:(id)target action:(SEL)action
{
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(0.0, 0.0, image.size.width, image.size.height);
button.titleLabel.textAlignment = UITextAlignmentCenter;
[button setBackgroundImage:image forState:UIControlStateNormal];
[button setTitle:title forState:UIControlStateNormal];
[button addTarget:target action:action forControlEvents:UIControlEventTouchUpInside];
// additional customizations here...
UIBarButtonItem* barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];
return [barButtonItem autorelease];
}
Если вы импортируете UIBarButtonItem+YourPreferredName.h
там, где вам это нужно, вы можете использовать следующее:
UIBarButtonItem* backBarButtonItem = [UIBarButtonItem barItemWithImage:[UIImage imageNamed:@"YoutImageName"] title:@"YourTitle" target:self action:@selector(goBack:)];
, где goBack
может быть следующим:
- (void)goBack:(id)sender
{
// do stuff here
}
Надеюсь, это поможет.