上篇文章讲了UE4安卓互相调用,这篇来看看IOS原生代码和UE4的关系。 plist 上篇文章提到了一个概念:UPL,在IOS代码编写里同样有使用UPL的地方,但对于IOS目前我所见到只是用于更改plist(UE 4.25.1 默认打包会产生下面这样一个 plist 文件info.plist,在一些 ...
分类:
移动开发 时间:
2021-04-13 12:11:01
阅读次数:
0
自定义导航栏返回键有多重方式,系统返回键、左键、或者自定义导航栏等等; 下面介绍的是系统返回键自定义图片、文字样式 1、替换返回键图片 UIImage*back = [[UIImage imageNamed:YLNavBackIconName] imageWithRenderingMode:UIIm ...
分类:
移动开发 时间:
2020-09-16 12:07:27
阅读次数:
41
self.navigationController.navigationBar.translucent=NO; [self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarM ...
分类:
移动开发 时间:
2020-08-17 16:51:49
阅读次数:
87
本篇介绍UIImage、UIImageView 元素的常用功能用法。 ...
分类:
移动开发 时间:
2020-08-16 00:01:51
阅读次数:
134
// 加入现在有三张图片分别为animate_1、animate_2、animate_3 // 方法一 imageView.animationImages =@[[UIImage imageNamed:@"animate_1"], [UIImage imageNamed:@"animate_2"], ...
分类:
移动开发 时间:
2020-06-16 14:58:17
阅读次数:
98
1. -(void)saveImage:(CGImageRef)image directoryURL:(NSURL*)directoryURL filename:(NSString*)filename { @autoreleasepool { NSURL *fileURL = [directoryU ...
分类:
其他好文 时间:
2020-04-10 10:29:59
阅读次数:
81
一、图片加载的工作流概括来说,从磁盘中加载一张图片,并将它显示到屏幕上,中间的主要工作流如下:假设我们使用 +imageWithContentsOfFile: 方法从磁盘中加载一张图片,此时的图片并没有解压缩;然后将生成的 UIImage 赋值给 UIImageView;接着一个隐式的 CATran... ...
分类:
移动开发 时间:
2020-02-26 14:12:52
阅读次数:
88
iOS 性能调试instrumentInstrumentInstrument之Core Animation工具避免图层混合①、确保控件的opaque属性设置为true,确保backgroundColor和父视图颜色一致且不透明;②、如无特殊需要,不要设置低于1的alpha值;③、确保UIImage没... ...
分类:
移动开发 时间:
2020-02-26 13:59:51
阅读次数:
87
NSArray*activityItems; //IMAGE if([strType isEqual:@"IMAGE"]) { UIImage*imageToShare = _iv.image; activityItems =@[imageToShare]; }else { NSURL*shareU ...
分类:
移动开发 时间:
2020-02-06 16:16:50
阅读次数:
91
1 // 颜色转换为背景图片 2 - (UIImage *)imageWithColor:(UIColor *)color { 3 CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f); 4 UIGraphicsBeginImageContext(rect ...
分类:
移动开发 时间:
2020-01-04 14:12:50
阅读次数:
133