【iOS】UI学习——登陆界面案例、照片墙案例

文章目录

  • 登陆界面案例
  • 照片墙案例

登陆界面案例

这里通过一个登陆界面来复习一下前面学习的内容。

先在接口部分定义两个UILabel、两个UITextField、两个UIButton按键

#import <UIKit/UIKit.h>@interface ViewController : UIViewController
{UILabel* _lbUser;UILabel* _lbPassword;UITextField* _textUser;UITextField* _textPassword;UIButton* _btn1;UIButton* _btn2;
}
@property (retain, nonatomic) UILabel* lbUser;
@property (retain, nonatomic) UILabel* lbPassword;
@property (retain, nonatomic) UITextField* textUser;
@property (retain, nonatomic) UITextField* textPassword;
@property (retain, nonatomic) UIButton* btn1;
@property (retain, nonatomic) UIButton* btn2;@end

实现部分

#import "ViewController.h"@interface ViewController ()@end@implementation ViewController
@synthesize lbUser = _lbUser;
@synthesize lbPassword = _lbPassword;
@synthesize textUser = _textUser;
@synthesize textPassword = _textPassword;
@synthesize btn1 = _btn1;
@synthesize btn2 = _btn2;- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view.//设置两个UILabelself.lbUser = [[UILabel alloc] initWithFrame:CGRectMake(50, 160, 100, 40)];self.lbUser.text = @"用户名:";self.lbUser.font = [UIFont systemFontOfSize:24];self.lbPassword = [[UILabel alloc] initWithFrame:CGRectMake(50, 230, 100, 40)];self.lbPassword.text = @"密码:";self.lbPassword.font = [UIFont systemFontOfSize:24];[self.view addSubview:self.lbUser];[self.view addSubview:self.lbPassword];//设置两个输入框self.textUser = [[UITextField alloc] initWithFrame:CGRectMake(150, 160, 200, 40)];self.textUser.borderStyle = UITextBorderStyleRoundedRect;self.textUser.keyboardType = UIKeyboardTypeDefault;self.textUser.font = [UIFont systemFontOfSize:24];self.textUser.text = @"";[self.view addSubview:self.textUser];_textPassword = [[UITextField alloc] initWithFrame:CGRectMake(150, 230, 200, 40)];self.textPassword.borderStyle = UITextBorderStyleRoundedRect;self.textPassword.keyboardType = UIKeyboardTypeDefault;self.textPassword.font = [UIFont systemFontOfSize:24];self.textPassword.text = @"";[self.view addSubview:self.textPassword];//设置两个按钮self.btn1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];self.btn1.frame = CGRectMake(150, 350, 100, 40);[self.btn1 setTitle:@"登陆" forState:UIControlStateNormal];self.btn1.titleLabel.font = [UIFont systemFontOfSize:32];[self.btn1 addTarget:self action:@selector(pressLogin) forControlEvents:UIControlEventTouchUpInside];[self.view addSubview:self.btn1];self.btn2 = [UIButton buttonWithType:UIButtonTypeRoundedRect];self.btn2.frame = CGRectMake(150, 450, 100, 40);[self.btn2 setTitle:@"注册" forState:UIControlStateNormal];self.btn2.titleLabel.font = [UIFont systemFontOfSize:32];[self.btn2 addTarget:self action:@selector(pressRegister) forControlEvents:UIControlEventTouchUpInside];[self.view addSubview:self.btn2];
}-(void) touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {[self.textUser resignFirstResponder];[self.textPassword resignFirstResponder];
}-(void) pressLogin
{NSString* Username = @"Reus";NSString* Password = @"123098";NSString* strUser = self.textUser.text;NSString* strPass = self.textPassword.text;if([Username isEqual:strUser] && [Password isEqual:strPass]) {NSLog(@"对对对");UIAlertController* ele = [UIAlertController alertControllerWithTitle:@"提示" message:@"您的账号和密码输入正确,即将进入主页面" preferredStyle:UIAlertControllerStyleAlert];UIAlertAction* act = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){//设置密码输入正确将要进入的界面UIView* view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 10000, 10000)];view.backgroundColor = [UIColor grayColor];UILabel* lb = [[UILabel alloc] initWithFrame:CGRectMake(50, 50, 300, 100)];lb.text = @"哈哈哈哈哈哈哈哈";lb.textColor = [UIColor redColor];lb.font = [UIFont systemFontOfSize:34];[view addSubview:lb];[self.view addSubview:view];}];[ele addAction:act];[self presentViewController:ele animated:YES completion:nil];} else {UIAlertController* ele = [UIAlertController alertControllerWithTitle:@"提示" message:@"您的账号或密码输入错误,请重新输入" preferredStyle:UIAlertControllerStyleAlert];UIAlertAction* act = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action){self.textUser.text = @"";self.textPassword.text = @"";}];[ele addAction:act];[self presentViewController:ele animated:YES completion:nil];}
}-(void) pressRegister
{NSLog(@"好好好");
}@end

效果图
在这里插入图片描述

照片墙案例

UITapGestureRecognizer:iOS 中一种手势识别器,用于检测用户在屏幕上的单击或双击操作。

在 Objective-C 中,- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated; 是 UINavigationController 类的一个实例方法,用于将一个新的视图控制器添加到导航栈中,并将其推送到当前视图控制器上。

该方法的主要作用如下:

添加新的视图控制器到导航栈中
该方法会将传入的 viewController 参数添加到导航栈的顶部,成为当前显示的视图控制器。
切换到新的视图控制器
调用该方法后,导航控制器会切换到新推送的视图控制器,用户将看到新的视图控制器的内容。
动画效果
animated 参数决定了视图切换时是否使用动画效果。如果设置为 YES,则视图切换时会有一个平滑的动画效果;如果设置为 NO,则视图会立即切换到新的视图控制器。
导航栈管理
每次调用该方法后,新的视图控制器都会被添加到导航栈的顶部。用户可以通过导航栏上的返回按钮,返回到之前的视图控制器。

SceneDelegate.m:

#import "SceneDelegate.h"
#import "VCRoot.h"
@interface SceneDelegate ()@end@implementation SceneDelegate- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions {//导航控制器框架结构UINavigationController* nav = [[UINavigationController alloc] initWithRootViewController:[[VCRoot alloc] init]];self.window.rootViewController = nav;[self.window makeKeyAndVisible];
}- (void)sceneDidDisconnect:(UIScene *)scene {// Called as the scene is being released by the system.// This occurs shortly after the scene enters the background, or when its session is discarded.// Release any resources associated with this scene that can be re-created the next time the scene connects.// The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead).
}- (void)sceneDidBecomeActive:(UIScene *)scene {// Called when the scene has moved from an inactive state to an active state.// Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive.
}- (void)sceneWillResignActive:(UIScene *)scene {// Called when the scene will move from an active state to an inactive state.// This may occur due to temporary interruptions (ex. an incoming phone call).
}- (void)sceneWillEnterForeground:(UIScene *)scene {// Called as the scene transitions from the background to the foreground.// Use this method to undo the changes made on entering the background.
}- (void)sceneDidEnterBackground:(UIScene *)scene {// Called as the scene transitions from the foreground to the background.// Use this method to save data, release shared resources, and store enough scene-specific state information// to restore the scene back to its current state.
}@end

VCRoot.m:

#import "VCRoot.h"
#import "VCImageShow.h"
@interface VCRoot ()@end@implementation VCRoot- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view.self.title = @"照片墙";self.navigationController.navigationBar.translucent = YES;self.view.backgroundColor = [UIColor whiteColor];UIScrollView* sv = [[UIScrollView alloc] init];sv.frame = self.view.bounds;//CGRectMake(5, 10, 394, 852);sv.contentSize = CGSizeMake(self.view.bounds.size.width, self.view.bounds.size.height);//  打开交互事件,关闭会导致无法使用点击等手势操作成功运行sv.userInteractionEnabled = YES;for(int i = 0; i < 10; i++) {NSString* strName = [NSString stringWithFormat:@"%d.JPG",i+1];UIImage* image = [UIImage imageNamed:strName];UIImageView* iview = [[UIImageView alloc] initWithImage:image];iview.frame = CGRectMake(10 + (i % 3) * self.view.bounds.size.width / 3, (i / 3) * self.view.bounds.size.height / 4, 110, 200);[sv addSubview:iview];iview.userInteractionEnabled = YES;iview.tag = 101 + i;UITapGestureRecognizer* tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(press:)];//表示我们需要检测单次点击事件tap.numberOfTapsRequired = 2;//表示我们需要检测单指点击事件tap.numberOfTouchesRequired = 1;//将手势识别器添加到视图上去[iview addGestureRecognizer:tap];}[self.view addSubview:sv];
}-(void) press:(UITapGestureRecognizer*) tap {UIImageView* imageView = (UIImageView*) tap.view;//创建显示视图控制器VCImageShow* imageShow = [[VCImageShow alloc] init];imageShow.imageTag = imageView.tag;[self.navigationController pushViewController:imageShow animated:YES];
}/*
#pragma mark - Navigation// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {// Get the new view controller using [segue destinationViewController].// Pass the selected object to the new view controller.
}
*/@end

VCIamgeShow.h:

#import <UIKit/UIKit.h>NS_ASSUME_NONNULL_BEGIN@interface VCImageShow : UIViewController
@property (assign, nonatomic) NSUInteger imageTag;
@property (nonatomic, retain) UIImage* image;
@property (nonatomic, retain) UIImageView* imageView;
@end

VCImageShow.m:

#import "VCImageShow.h"
#import "VCRoot.h"
@interface VCImageShow ()@end@implementation VCImageShow
@synthesize imageView = _imageView;
@synthesize image = _image;
- (void)viewDidLoad {[super viewDidLoad];self.title = @"图片展示";UIImageView* _imageView = [[UIImageView alloc] init];_imageView.frame = self.view.bounds;_imageView.image = [UIImage imageNamed:[NSString stringWithFormat:@"%lu.JPG", (unsigned long)(_imageTag-100)]];[self.view addSubview:_imageView];
}/*
#pragma mark - Navigation// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {// Get the new view controller using [segue destinationViewController].// Pass the selected object to the new view controller.
}
*/@end

效果图:
在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/25802.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

2024050501-重学 Java 设计模式《实战命令模式》

重学 Java 设计模式&#xff1a;实战命令模式「模拟高档餐厅八大菜系&#xff0c;小二点单厨师烹饪场景」 一、前言 持之以恒的重要性 初学编程往往都很懵&#xff0c;几乎在学习的过程中会遇到各种各样的问题&#xff0c;哪怕别人那运行好好的代码&#xff0c;但你照着写完…

深入解析分布式链路追踪:原理、技术及应用

目录 分布式链路追踪简介分布式链路追踪的基本概念 Span 和 Trace上下文传播采样策略 分布式链路追踪的工作原理常见的分布式链路追踪系统 ZipkinJaegerOpenTelemetry 分布式链路追踪的技术实现 数据收集数据传输数据存储数据展示 分布式链路追踪的应用场景 性能优化故障排除依…

适配Android12启动页

今天我们讲个什么话题呢&#xff1f;我们今天讲的内容是&#xff0c;Android12新启动页的支持API。 启动页我想大家都不陌生吧&#xff0c;通常的写法就是先创建一个SplashActivity&#xff0c;在onCreate中 Handler(Looper.getMainLooper()).postDelayed({// 在这里跳转主界…

人月神话珍藏版系列文章二---人月神话

前言: 在众多软件项目中,缺乏合理的进度安排是造成项目滞后的最主要的原因,它比其他所有因素加起来的影响还要大。软件项目的进度安排不合理普遍发生的原因是什么呢? 第一,在实际的工作当中,估算技术还不够成熟,说的更加的严重些,它们反映的是一个很不真实的假设,一切…

Python数据分析与机器学习在电子商务推荐系统中的应用

文章目录 &#x1f4d1;引言一、推荐系统的类型二、数据收集与预处理2.1 数据收集2.2 数据预处理 三、基于内容的推荐3.1 特征提取3.2 计算相似度3.3 推荐物品 四、协同过滤推荐4.1 基于用户的协同过滤4.2 基于物品的协同过滤 五、混合推荐与评估推荐系统5.1 结合推荐结果5.2 评…

Qwen2本地部署的实战教程

大家好,我是herosunly。985院校硕士毕业,现担任算法研究员一职,热衷于机器学习算法研究与应用。曾获得阿里云天池比赛第一名,CCF比赛第二名,科大讯飞比赛第三名。拥有多项发明专利。对机器学习和深度学习拥有自己独到的见解。曾经辅导过若干个非计算机专业的学生进入到算法…

网络安全技术实验一 信息收集和漏洞扫描

一、实验目的和要求 了解信息搜集和漏洞扫描的一般步骤&#xff0c;利用Nmap等工具进行信息搜集并进行综合分析&#xff1b;掌握TCP全连接扫描、TCP SYN扫描的原理,利用Scapy编写网络应用程序&#xff0c;开发端口扫描功能模块&#xff1b;使用漏洞扫描工具发现漏洞并进行渗透测…

8款高效电脑维护与多媒体工具合集!

AI视频生成&#xff1a;小说文案智能分镜智能识别角色和场景批量Ai绘图自动配音添加音乐一键合成视频https://h5.cxyhub.com/?invitationhmeEo7 1. 系统安装利器——WinNTSetup 系统安装利器&#xff0c;目前最好用的系统安装器&#xff0c;Windows系统安装部署工具。支持所…

跟我学,数据结构和组原真不难

我个人认为408中计算机组成原理和数据结构最难 难度排行是计算机组成原理>数据结构>操作系统>计算机网络。 计算机组成原理比较难的原因是&#xff0c;他涉及的硬件的知识比较多&#xff0c;这对于大家来说难度就很高了&#xff0c;特别是对于跨考的同学来说&#x…

ABB机械人模型下载

可以下载不同格式的 https://new.abb.com/products/robotics/zh/robots/articulated-robots/irb-6700 step的打开各部件是分开的&#xff0c;没有装配在一起&#xff0c;打开看单个零件时&#xff0c;我们会发现其各零件是有装配的定位关系的。 新建一个装配环境&#xff0c;点…

【qt】MDI多文档界面开发

MDI多文档界面开发 一.应用场景二.界面设计三.界面类设计四.实现功能1.新建文档2.打开文件3.关闭所有4.编辑功能5.MDI页模式6.瀑布展开模式7.平铺模式 五.总结 一.应用场景 类似于vs的界面功能,工具栏的功能可以对每个文档使用! 二.界面设计 老规矩,边做项目边学! 目标图: 需…

【vscode+clangd】clangd不起作用的解决方案、compile_commands.json文件为空的解决方案

配环境过程中出的问题多种多样&#xff0c;我的解决方案不一定对你适用&#xff0c;但不妨试试。 问题1&#xff1a;clangd不起作用 问题描述 在ubuntu22.04上安装了vscode&#xff0c;并安装了bear来生成compile_commands.json&#xff0c;到这里一切正常。 总之按照https:/…

【JMeter接口测试工具】第二节.JMeter项目实战(上)【实战篇】

文章目录 前言项目实战零、接口测试流程一、测试数据准备二、接口功能测试三、掌握测试用例编写四、自动化脚本架构搭建总结 前言 零、接口测试流程 1、制定测试计划,分配任务 2、从 API 文档中提取接口清单&#xff1a;对 API 文档简化,提高测试效率,接口清单就是对 API 文档…

【面试题】如何破坏 JVM的双亲委派机制

双亲委派机制是Java虚拟机&#xff08;JVM&#xff09;的一个特性&#xff0c;它确保了类的唯一性和安全性。这个机制的核心思想是&#xff0c;当一个类加载器要加载一个类时&#xff0c;它首先会委托给它的父类加载器去尝试加载这个类&#xff0c;只有当父类加载器无法完成这个…

【研发日记】Matlab/Simulink软件优化(三)——利用NaNFlag为数据处理算法降阶

文章目录 前言 背景介绍 初始算法 优化算法 分析和应用 总结 前言 见《【研发日记】Matlab/Simulink软件优化(一)——动态内存负荷压缩》 见《【研发日记】Matlab/Simulink软件优化(二)——通信负载柔性均衡算法》 背景介绍 在一个嵌入式软件开发项目中&#xff0c;需要开…

c 对各种数据类型变量定义的理解

c 的数据类型&#xff1a;基本数据类型有&#xff1a;整型&#xff0c;浮点型&#xff0c;字符型 派生类型&#xff1a;数组 &#xff0c;struct, union, enum 自定义型&#xff1a; typedef 我理解c 对数据变量的定义就是把此变量存储在pc内存中&#xff0c;所以必须要…

OpenAI与核聚变公司寻求合作,白宫拨款1.8亿美元用于核聚变商业化研究

在当下&#xff0c;由 AI 引发的新一轮能源危机已经不再是一个小概率的「黑天鹅」事件&#xff0c;而是一头正在向我们猛冲而来的「灰犀牛」。 Helion Energy&#xff0c;是一家总部位于美国华盛顿州埃弗雷特的能源创业公司。 3.5研究测试&#xff1a;hujiaoai.cn 4研究测试&am…

Mysql的底层实现逻辑

Mysql5.x和Mysql8性能的差异 整体性能有所提高&#xff0c; 在非高并发场景下&#xff0c;他们2这使用区别不大&#xff0c;性能没有明显的区别。 只有高并发时&#xff0c;mysql8才体现他的优势。 2. Mysql数据存储结构Innodb逻辑结构 数据选用B树结构存储数据&#xff0…

如何画系统架构图学习

原文链接:https://learn.lianglianglee.com/%E4%B8%93%E6%A0%8F/%E4%BB%8E%200%20%E5%BC%80%E5%A7%8B%E5%AD%A6%E6%9E%B6%E6%9E%84/51%20%E5%A6%82%E4%BD%95%E7%94%BB%E5%87%BA%E4%BC%98%E7%A7%80%E7%9A%84%E8%BD%AF%E4%BB%B6%E7%B3%BB%E7%BB%9F%E6%9E%B6%E6%9E%84%E5%9B%BE%EF…

概率论中两种特殊的 E(x) 计算方法:先求积分再求导,或者先求导再求积分

为了求解某个函数 ( E(x) )&#xff0c;可以使用两种方法&#xff1a;先求积分再求导&#xff0c;或者先求导再求积分。这里我们以数列求和公式为例&#xff0c;分别介绍这两种方法。 1. 先求积分再求导 假设我们有一个函数 ( f(x) ) 的级数展开&#xff1a; E ( x ) ∑ n …