- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以将 UIButtonTypeDetailDisclose 的图像从默认图像更改为更有趣的图像。但是,请注意,我要求的是按钮,而不是一种类型的 uibutton。
最佳答案
您必须更改单元格的accessoryView。
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath
// code for initializing the cell..
UIImage *image = [UIImage imageNamed:@"interestingImage.png"];
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
CGRect frame = CGRectMake(44.0, 44.0, image.size.width, image.size.height);
button.frame = frame;
[button setBackgroundImage:image forState:UIControlStateNormal];
[button addTarget:self action:@selector(accessoryButtonTapped:) forControlEvents:UIControlEventTouchUpInside];
button.backgroundColor = [UIColor clearColor];
cell.accessoryView = button;
return cell;
}
关于ios - uibuttontypedetaildisclosure 自定义图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16544615/
是否可以将 UIButtonTypeDetailDisclose 的图像从默认图像更改为更有趣的图像。但是,请注意,我要求的是按钮,而不是一种类型的 uibutton。 最佳答案 您必须更改单元格的a
我已将 UIButtonTypeDetailDisclosure 的图像更改为下图,但问题是图像变成了蓝色。我的问题在哪里? - (MKAnnotationView *)mapView:(MKMapV
我添加了annotaion pin point to my application ,当用户单击图钉时,会出现带有蓝色箭头的弹出窗口 (UIButtonTypeDetailDisclosure)。现在
我有一个自定义按钮类: CustomButton.h 文件: @interface CustomButton : UIButton @property (nonatomic, retain) NSSt
我正在尝试将 UIButtonTypeDetailDisclosure 添加到 View 的底部栏。 应用程序构建成功,但在运行时出现以下错误: *** Terminating app due to
我想在单击注释的详细信息按钮时进行详细 View 。但是每个引脚必须有不同的细节 View 。为此,我尝试将标签设置为按钮。然后我将在 calloutAccessoryControlTapped 方法
我是一名优秀的程序员,十分优秀!