iPhone SDK:将动画加载(齿轮)图像设置为UIBarButtonItem

时间:2010-01-18 21:34:44

标签: iphone image uibarbuttonitem

有没有办法将像Apple旋转齿轮这样的动画图像设置为UIBarButtonItem?

我尝试过这行代码,但动画gif图像不会播放:

myButton.image = [UIImage imageNamed:@"spinningGear.gif"];

4 个答案:

答案 0 :(得分:2)

尝试创建UIActivityIndicatorView并使用-[UIBarButtonItem initWithCustomView:]将其分配给您的按钮。

答案 1 :(得分:0)

我认为UIBarButtonItem不可能。

您可能希望使用customView(属性或initWithCustomView)并使用UIImageView作为该视图。这仍然不会为gif的“开箱即用”(刚刚检查过)提供动画。

如果您这样做,您有两种选择:

  • 使用来自UIImageView类的animatedImages并为每个帧使用单独的图像(写出头部代码可能有一些错误):

NSMutableArray * imgs = [NSMutableArray array];
for(int i = 0; i < NUMBER_OF_FRAMES; i++) {
    [imgs addObject: [UIImage imageNamed: [NSString stingWithFormat: @"anim%d.png", i]]];
}
UIImageView * imgview = [[UIImageView alloc] init];
imgview.animatedImages = imgs;
[imgview startAnimating];

答案 2 :(得分:0)

我发现此行不正确:

[[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0, 0, 20, 20)];

... Apple的默认刷新按钮的实际大小略有不同。如果您在该工具栏上有其他项目进行自动布局,则需要调整大小。

不幸的是,Apple提供 no API 来查找大小。通过反复试验,似乎这是正确的:

[[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0, 0, 28, 28)];

答案 3 :(得分:0)

我这样做是通过将UIBarButtonItem的customView设置为带有图标图像的UIButton,然后添加UIActivityIndi​​cator作为UIButton的子视图。

要进行设置,我只需将UIButton拖到Interface Builder中的UIBarButtonItem上(您也可以在代码中执行此操作)。然后显示活动指示器:

UIButton *customButton = (UIButton *)self.refreshButton.customView;
[customButton setImage:nil forState:UIControlStateNormal];
[customButton removeTarget:self action:@selector(buttonAction) forControlEvents:UIControlEventTouchUpInside];
[customButton addTarget:self action:@selector(altButtonAction) forControlEvents:UIControlEventTouchUpInside];
self.activityIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
self.activityIndicator.frame = CGRectMake(round((customButton.frame.size.width - 25) / 2), round((customButton.frame.size.height - 25) / 2), 25, 25);
self.activityIndicator.userInteractionEnabled = FALSE; // this allows the button to remain tappable
[customButton addSubview:self.activityIndicator];
[self.activityIndicator startAnimating];

并返回默认按钮状态:

UIButton *customButton = (UIButton *)self.refreshButton.customView;
[customButton setImage:[UIImage imageNamed:@"IconRefresh"] forState:UIControlStateNormal];
[customButton removeTarget:self action:@selector(altButtonAction) forControlEvents:UIControlEventTouchUpInside];
[customButton addTarget:self action:@selector(buttonAction) forControlEvents:UIControlEventTouchUpInside];
[self.activityIndicator removeFromSuperview];
[self.activityIndicator release];

一些注意事项:

  1. 如果您不想在处于“活动”状态时更改按钮操作,则可以删除addTarget和removeTarget行。
  2. 如果您不希望按钮在处于“活动”状态时可以点击,则可以省略活动指示符的userInteractionEnabled行(或删除目标并重新添加)。
  3. 带有customView的UIBarButtonItem不会显示按钮边框。如果你想要这个边框,你必须制作自己的图像并将其添加为UIButton的背景图像。