作者:kaiping2011 | 来源:互联网 | 2023-01-16 20:49
为了防止图片如何恢复真实的颜色我现在放置的图像是白色的
- (UISwipeActionsConfiguration *)tableView:(UITableView *)tableView trailingSwipeActionsConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath API_AVAILABLE(ios(11.0))
{
UIContextualAction *deleteRowAction = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:nil handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL))
{
NSLog(@"------------------>%@",sourceView);
completionHandler (YES);
}];
deleteRowAction.image = [UIImage imageNamed:@"heart"];
UISwipeActionsConfiguration *cOnfig= [UISwipeActionsConfiguration configurationWithActions:@[deleteRowAction]];
return config;
return nil;
}
UnRewa..
10
RSSReaderMaker解决方案可与少量更新Swift 5一起使用:
class ImageWithoutRender: UIImage {
override func withRenderingMode(_ renderingMode: UIImage.RenderingMode) -> UIImage {
return self
}
}
并且在trailingSwipeActionsConfigurationForRowAt
或leadingSwipeActionsConfigurationForRowAt
使用:
if let cgImageX = UIImage(named: "x_blue_big")?.cgImage {
action.image = ImageWithoutRender(cgImage: cgImageX, scale: UIScreen.main.nativeScale, orientation: .up)
}
小智..
6
您可以通过修改一般改变图像的颜色tintColor
的UIImage
经UIAppearance
,例如像这样:
UIImageView.appearance().tintColor = .yellow
但这会将(默认)着色颜色应用于应用程序中的所有图像视图,因此您可以通过以下方式将其限制为表格视图中的图像视图:
UIImageView.appearance(whenContainedInInstancesOf: [UITableView.self]).tintColor = .yellow
UITableView
如果有子类,也可以指定自己的子类。
1> UnRewa..:
RSSReaderMaker解决方案可与少量更新Swift 5一起使用:
class ImageWithoutRender: UIImage {
override func withRenderingMode(_ renderingMode: UIImage.RenderingMode) -> UIImage {
return self
}
}
并且在trailingSwipeActionsConfigurationForRowAt
或leadingSwipeActionsConfigurationForRowAt
使用:
if let cgImageX = UIImage(named: "x_blue_big")?.cgImage {
action.image = ImageWithoutRender(cgImage: cgImageX, scale: UIScreen.main.nativeScale, orientation: .up)
}
2> 小智..:
您可以通过修改一般改变图像的颜色tintColor
的UIImage
经UIAppearance
,例如像这样:
UIImageView.appearance().tintColor = .yellow
但这会将(默认)着色颜色应用于应用程序中的所有图像视图,因此您可以通过以下方式将其限制为表格视图中的图像视图:
UIImageView.appearance(whenContainedInInstancesOf: [UITableView.self]).tintColor = .yellow
UITableView
如果有子类,也可以指定自己的子类。