【iOS】暑期学习总结

embedded/2025/1/16 1:33:51/

暑期学习总结

  • 前言
  • 无限轮播图
  • 换头像
  • 简单的网络请求
  • UISearchController

前言

暑假在学校完成了五个项目,总的来说学习到了很多新的知识,这里对暑假中学习的内容进行一个小的总结,整理一些个人认为比较重点的内容。

无限轮播图

无限轮播图的原理是在轮播的图片两边加上两个假页,通过判断是否到了这两个假页的位置,而后将滚动视图展示位置移动,从而可以实现视觉效果上的无限轮播效果。
在这里插入图片描述
如图所示,当我插入三张图片时,两边的假页分别是第三、一张,这样一来,在展示时当移动到第五张时,函数检测后将滚动视图重置至第二张,就不会有间断效果,前面的移动也是如此。

self.scrollview = [[UIScrollView alloc] init];self.scrollview.frame = CGRectMake(0, [UIScreen mainScreen].bounds.size.height/2-200, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height-320);self.scrollview.pagingEnabled = YES;self.scrollview.scrollEnabled = YES;self.scrollview.contentSize = CGSizeMake([UIScreen mainScreen].bounds.size.width * 5 , [UIScreen mainScreen].bounds.size.height / 2);for (int i = 0; i <= 5; i++) {NSString *strName = [NSString stringWithFormat:@"%d.JPG", (i % 3) + 1];// 创建图片UIImage *image = [UIImage imageNamed:strName];// 创建视图UIImageView *iView = [[UIImageView alloc] initWithImage:image];if (i == 5) {iView.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height - 300);}else {iView.frame = CGRectMake([UIScreen mainScreen].bounds.size.width * (i + 1), 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height - 320);}// 将图片添加到滚动视图,不要添加到主视图[self.scrollview addSubview:iView];}[self.view addSubview:self.scrollview];// 设置初始偏移量到第二张图片[self.scrollview setContentOffset:CGPointMake([UIScreen mainScreen].bounds.size.width, 0) animated:NO];// 实现滚动到最后一张视图时,再次滚动能回到第一张视图self.scrollview.delegate = self;- (void)scrollViewDidScroll:(UIScrollView *)scrollView {//当前滚动到的x位置CGFloat X = scrollView.contentOffset.x;//滚动视图展示宽度,即已经滚动过的宽度CGFloat screenWidth = CGRectGetWidth(scrollView.frame);//滚动视图内容的宽度,在我的视图中,就是5个屏幕的宽度CGFloat contentWidth = scrollView.contentSize.width;// 滚动到最后一张视图之后,将滚动位置重置到第二张图片;这样做的话,滚动视图位置被提前,就可以继续对视图进行从左到右的滚动if (X >= contentWidth - screenWidth) {[scrollView setContentOffset:CGPointMake(screenWidth, 0) animated:NO];}// 滚动到第一张视图之前,将滚动位置重置到倒数第二张图片;这样做的话,滚动视图位置被滞后,就可以继续对视图进行从右向左的滚动else if (X < screenWidth - scrollView.frame.size.width) {[scrollView setContentOffset:CGPointMake(contentWidth - 2 * screenWidth, 0) animated:NO];}
}

换头像

这个功能是一个在自己创建的照片墙中选择图片并且传递到上一个页面,在头像框内显示的操作,这里我使用了协议传值的方法,通过将图片传递给上一个界面实现了该功能,这里通过代码展示。

if(self.selectedCount == 0) {self.elertView = [UIAlertController alertControllerWithTitle:@"警告" message:@"请选择一张图片更换" preferredStyle:UIAlertControllerStyleAlert];UIAlertAction* action = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction* action){}];[self.elertView addAction:action];[self presentViewController:self.elertView animated:YES completion:nil];} else if (self.selectedCount == 1) {for(UIView* subview in self.scrollview.subviews) {if([subview isKindOfClass:[UIButton class]]) {UIButton* button = (UIButton*) subview;if(button.selected) {UIImage* image = [button imageForState:UIControlStateNormal];[self.delegate ChangePhoto:image];button.selected = NO;[self.navigationController popViewControllerAnimated:YES];break;}}}} else {self.elertView = [UIAlertController alertControllerWithTitle:@"警告" message:@"禁止一次选用多张图片更换" preferredStyle:UIAlertControllerStyleAlert];UIAlertAction* action = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction* action){}];[self.elertView addAction: action];[self presentViewController:self.elertView animated:YES completion:nil];}

简单的网络请求

简单的网络请求主要有以下几个步骤:

  1. 创建请求地址
  2. 创建请求类
  3. 创建会话
  4. 根据会话创建任务
  5. 启动任务

这里就不详细讲解网络请求的内容了,如果需要了解内容,可以看看本人的这篇博客:【iOS】APP仿写——天气预报
主要需要注意网络请求异步的问题。

UISearchController

UISearchController提供了一个搜索栏和搜索结果视图的管理器,使得在应用中集成搜索功能变得简单。它可以用于在单个视图控制器中添加搜索功能,也可以与其他视图控制器(如UITableViewController)一起使用。 我们要实现UISearchControllerDelegate, UISearchResultsUpdatig两个协议来实现想要显示的效果,下面通过代码展示:

self.search = [[UISearchController alloc] initWithSearchResultsController:nil];self.search.delegate = self;self.search.searchResultsUpdater = self;//设置searchbar的尺寸[self.search.searchBar sizeToFit];//在搜索时将背景模糊化,因为模糊背景的目的是将焦点集中在搜索结果上,而不是与背景内容进行交互。self.search.obscuresBackgroundDuringPresentation = YES;//隐藏导航控制栏self.search.hidesNavigationBarDuringPresentation = YES;//设置未编辑状态的searchbar的位置self.search.searchBar.frame = CGRectMake(0, 150, [UIScreen mainScreen].bounds.size.width, 55);
//    _tableview.tableHeaderView = self.search.searchBar;[self.view addSubview:self.search.searchBar];self.search.searchBar.searchBarStyle = UISearchBarStyleDefault;UISearchBar* searchbar = self.search.searchBar;searchbar.placeholder = @"请输入搜索的城市";

在这里插入图片描述

上面是本人在完成项目中一些觉得比较有代表性的学习的内容,如果你还想了解更多的内容,去看看笔者之前写的博客吧。


http://www.ppmy.cn/embedded/105602.html

相关文章

qt5.15.2 模拟LVGL8.3

目录 1.下载需要的东西1.SDL 动态库2.LVGL模拟器源码3.下载lv_drivers4.下载lvgl 2.创建QT例程3.往qt里移植lvgl1.将lv_port_pc_eclipse-release-v8.3文件夹里的文件全部复制到Qt_LVGL_Demo文件夹中2.将lv_drivers和lvgl文件夹复制到Qt_LVGL_Demo3.复制SDL2和lib文件夹 4.配置Q…

c# new 关键字与现象不符合问题 场景:使用子类的字段覆盖父类的字段

场景 父类字段&#xff0c;父类函数&#xff08;函数内部使用了这个字段&#xff09; 子类中new 同名字段 但是父类函数调用时依然使用了父类字段并没有使用子类字段。 在 C# 中&#xff0c;new 关键字用于隐藏基类中的成员&#xff0c;而不是进行覆盖。如果你在派生类中使用 n…

使用 OpenSSL 创建自签名证书

mkdir -p /etc/nginx/conf.d/cert #2、创建私钥 openssl genrsa -des3 -out https.key 1024 提示输入字符&#xff1a; 输入字符&#xff1a;rancher [rootocean-app-1a-01 cert]# openssl genrsa -des3 -out https.key 1024 Generating RSA private key, 1024 bit long modulu…

【ruby java】登陆功能/邮件发送模版240903

Rails 风格登录系统添加全面而详细的注释&#xff0c;解释每个部分的功能和用途。​​​​​​​​​ 详细注释&#xff0c;解释了每个文件和代码块的功能。以下是一些关键点的总结&#xff1a; 1. 控制器&#xff08;Controllers&#xff09;: - ApplicationController: …

Python数据分析实战,兰州市二手房市场深度分析

作为购房者&#xff0c;除了关注地段与价格外&#xff0c;房屋的总价与面积的关系&#xff0c;以及房屋朝向的选择&#xff0c;同样是决策过程中的关键因素。那么&#xff0c;兰州市的二手房市场中&#xff0c;房屋总价与面积之间究竟存在怎样的关系&#xff1f;各个朝向的房源…

惠中科技 RDS 自清洁膜层:光伏领域的卓越创新

惠中科技 RDS 自清洁膜层&#xff1a;光伏领域的卓越创新 在当今能源转型的关键时期&#xff0c;光伏产业以其清洁、可持续的特性成为瞩目焦点。而惠中科技的 RDS 自清洁膜层&#xff0c;正以其专业的品质和卓越的性能&#xff0c;为光伏行业带来全新的突破。 领先科技&#…

51单片机.之i2c读写eproom

1、i2c读写eeproom 通过uart发送数据&#xff0c;单片机接收数据后&#xff0c;显示到lcd&#xff0c;并写到eeprom保存。每次开机时&#xff0c;读取eeprom保存的数据&#xff0c;显示到 lcd。 程序框架 1、i2c驱动时序 2、uart中断收发数据 3、eeprom读写驱动 4、lcd驱动 5…

RedisMessageListenerContainer容器初始化

RedisMessageListenerContainer是Spring Data Redis提供的一个容器类&#xff0c;为Redis监听器提供异步处理能力&#xff0c;处理低级别消息、转换Redis的消息通道&#xff0c;它通常与MessageListenerAdapter和自定义的消息监听器一起使用。 一、RedisMessageListenerContain…