我使用此代码将insets添加到navigaiton栏的backIndicator图像.但是,这仅适用于图像的垂直定位.
我只能将图像向上或向下移动,但不能向左或向右移动.
看起来左/右插图不起作用.我不确定可能是什么问题.
我只能将图像向上或向下移动,但不能向左或向右移动.
看起来左/右插图不起作用.我不确定可能是什么问题.
UIEdgeInsets insets = UIEdgeInsetsMake(0,20,0); //(20,0) works fine UIImage *backArrowImage = [[UIImage imageNamed:@"Back"] imageWithAlignmentRectInsets:insets]; [[UINavigationBar appearance] setBackIndicatorImage:backArrowImage]; [[UINavigationBar appearance] setBackIndicatorTransitionMaskImage:backArrowImage];
我也试过这个:
UIImage * backArrowImage =[[UIImage imageNamed:@"Back"]resizableImageWithCapInsets:UIEdgeInsetsMake(0,0) resizingMode:UIImageResizingModeStretch];
解决方法
我已经尝试了很多方法,最后这对我有用,你可以重绘你的照片,做如下:
UIImage *arrow = [UIImage imageNamed:@"Back_normal"]; UIGraphicsBeginImageContextWithOptions(CGSizeMake(arrow.size.width+10,arrow.size.height),NO,0); // move the pic by 10,change it to the num you want [arrow drawAtPoint:CGPointMake(10,0)]; UIImage *finalImage = UIGraphicsGetimageFromCurrentimageContext(); UIGraphicsEndImageContext();
然后使用finalImage作为backIndicatorImage.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。