iOS应用程序开发(图片处理器)

续上篇 iOS 编程开发图片浏览器,继续实现一个图标生成功能。

功能。

操作系统平台:MacBook(macOS)

IDE:xcode

编程语言:Objective-c

以下是小程序在 iPhone 模拟器中的运行视频。也可以在 iPad 模拟器中运行。

效果图如下所示:

现在有一个方形小图标和圆形小图标。

一:生成遮罩并移动到目标位置

iOS应用程序开发,iPhone模拟器运行效果

新建一个 UIView 控件,调整大小,透明度。再添加移动功能。

self.view3=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 50, 50)];

self.view2 addSubview:self.view3\]; self.view3.backgroundColor=\[UIColor blueColor\]; self.view3.alpha=0.5;

二:改变遮罩颜色

iOS应用程序开发,在iPhone模拟器中运行效果视频。

遮罩颜色改变,用的是 UISegmentedControl 控件。

-(void) pick:(id)sender{

switch(self.segment.selectedSegmentIndex){

case 0:

self.segment setTintColor:\[UIColor redColor\]\]; self.view3.backgroundColor=\[UIColor redColor\]; break; case 1: \[self.segment setTintColor:\[UIColor orangeColor\]\]; self.view3.backgroundColor=\[UIColor orangeColor\]; break; case 2: \[self.segment setTintColor:\[UIColor yellowColor\]\]; self.view3.backgroundColor=\[UIColor yellowColor\]; break; case 3: \[self.segment setTintColor:\[UIColor greenColor\]\]; self.view3.backgroundColor=\[UIColor greenColor\]; break; case 4: \[self.segment setTintColor:\[UIColor cyanColor\]\]; self.view3.backgroundColor=\[UIColor cyanColor\]; break; case 5: \[self.segment setTintColor:\[UIColor blueColor\]\]; self.view3.backgroundColor=\[UIColor blueColor\]; break; case 6: \[self.segment setTintColor:\[UIColor purpleColor\]\]; self.view3.backgroundColor=\[UIColor purpleColor\]; break; }

三:截图生成图标

iOS编程开发,图片处理器在iPhone模拟器上运行效果。

添加一个 UIButton 按钮控件。自动生成图标。

以上内容仅供参考,如有不对,欢迎指正。

首次编辑:2025/03/14 10:08

相关推荐
晚枫~9 小时前
不同浏览器在Windows和Mac上的跨域配置方法
windows·macos
denggun1234511 小时前
Xcode的App Thinning Size Report分析包体积
macos·蓝桥杯·xcode
ajassi200013 小时前
开源 Objective-C IOS 应用开发(十四)传感器--陀螺仪和gps
ios·开源·objective-c
二流小码农14 小时前
鸿蒙开发:支持自定义组件的跑马灯
android·ios·harmonyos
醇氧14 小时前
MAC安装 Notepad Next
macos
2501_9151063215 小时前
iOS 抓包全流程指南,HTTPS 抓包、TCP 数据流分析与多工具协同的方法论
android·tcp/ip·ios·小程序·https·uni-app·iphone
3***49961 天前
Swift Experience
开发语言·ios·swift
疯笔码良1 天前
【IOS开发】Objective-C 与 Swift 的对比
ios
枫子有风1 天前
【go.sixue.work】2.2 面向对象:接口与多态
开发语言·后端·golang·xcode
阿斌_bingyu7091 天前
uniapp实现android/IOS消息推送
android·ios·uni-app