有没有办法将像Apple旋转齿轮这样的动画图像设置为UIBarButtonItem?
我尝试过这行代码,但动画gif图像不会播放:
myButton.image = [UIImage imageNamed:@"spinningGear.gif"];
答案 0 :(得分:2)
尝试创建UIActivityIndicatorView
并使用-[UIBarButtonItem initWithCustomView:]
将其分配给您的按钮。
答案 1 :(得分:0)
我认为UIBarButtonItem不可能。
您可能希望使用customView
(属性或initWithCustomView
)并使用UIImageView
作为该视图。这仍然不会为gif的“开箱即用”(刚刚检查过)提供动画。
如果您这样做,您有两种选择:
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];
UIImageView
的类http://blog.stijnspijker.nl/2009/07/animated-and-transparent-gifs-for-iphone-made-easy 答案 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,然后添加UIActivityIndicator作为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];
一些注意事项: