【iOS】UI学习(一)

UI学习(一)

  • UILabel
  • UIButton
    • UIButton事件
  • UIView
    • UIView对象的隐藏
    • UIView的层级关系
  • UIWindow
  • UIViewController
    • 定时器与视图对象
  • UISwitch

UILabel

UILabel是一种可以显示在屏幕上,显示文字的一种UI。
下面使用代码来演示UILabel的功能

@implementation ViewController- (void)createUI
{UILabel* label = [[UILabel alloc] init];//显示的文字label.text = @"燕子,没有你我怎么活啊";//label显示的位置label.frame = CGRectMake(10, 300, 350, 200);//label的背景颜色label.backgroundColor = [UIColor greenColor];//整个屏幕的背景颜色self.view.backgroundColor = [UIColor redColor];//将label显示在屏幕上[self.view addSubview:label];//label中文字的大小,标准大小34label.font = [UIFont systemFontOfSize:34];//label中文字阴影的颜色label.shadowColor = [UIColor grayColor];//阴影的偏移位置label.shadowOffset = CGSizeMake(3, 0);//label中文字显示的行数,当等于0时,系统自行判断显示多少行合适label.numberOfLines = 0;//label中文字的颜色label.textColor = [UIColor whiteColor];//默认文字在label中靠左显示,这里将文字改为在label中间显示label.textAlignment = NSTextAlignmentCenter;}- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view.[self createUI];
}@end

CGRectMake(CGFloat x, CGFloat y, CGFloat width, CGFloat height):返回了一个结构体CGRect,GRect结构在屏幕上定义了一个矩形,它包含和大小。
它是用来定义一个矩形的,CGFloat x是对应屏幕的横向(x坐标), CGFloat y对应就是纵向(y坐标)。这里注意一点,描点是从屏幕的左上方开始的。
NSTextAlignmentLeft/Center/Right :文字靠左、居中、靠右。

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

UIButton

@implementation ViewController-(void) createUIRectButton
{UIButton* btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];btn.frame = CGRectMake(20, 300, 300, 50);btn.backgroundColor = [UIColor greenColor];//向按钮普通状态添加文字[btn setTitle:@"按钮01" forState:UIControlStateNormal];//向按钮高亮状态提供文字[btn setTitle:@"按钮01已按下" forState:UIControlStateHighlighted];//设置按钮文字普通状态的颜色[btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];//设置按钮高亮状态文字的颜色[btn setTitleColor:[UIColor redColor] forState:UIControlStateHighlighted];//设置文字的字体大小btn.titleLabel.font = [UIFont systemFontOfSize:24];//下面又定义了一个按钮UIButton* btn2 = [UIButton buttonWithType:UIButtonTypeRoundedRect];btn2.frame = CGRectMake(50, 150, 300, 50);btn2.backgroundColor = [UIColor brownColor];[btn2 setTitle:@"按钮02" forState:UIControlStateNormal];[btn2 setTitle:@"按钮02已按下" forState:UIControlStateHighlighted];[btn2 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];[btn2 setTitleColor:[UIColor redColor] forState:UIControlStateHighlighted];btn2.titleLabel.font = [UIFont systemFontOfSize:24];btn.tag = 123;btn2.tag = 321;//UIButton事件[btn addTarget:self action:@selector(action01:) forControlEvents:UIControlEventTouchUpInside];[btn2 addTarget:self action:@selector(action01:) forControlEvents:UIControlEventTouchUpInside];[self.view addSubview:btn];[self.view addSubview:btn2]
}-(void)action01:(UIButton*) btn
{if(btn.tag == 123){NSLog(@"玛卡巴卡");} else if(btn.tag == 321){NSLog(@"汤姆布利波");}
}-(void)creatBtn
{UIButton* btnp = [UIButton buttonWithType:UIButtonTypeCustom];//UIButton* btno1 = [UIButton buttonWithType:UIButtonTypeCustom];btnp.frame = CGRectMake(20, 400, 400, 400);//加载两张图片,imageNamed后是图片名,要加图片类型UIImage* ima1 = [UIImage imageNamed:@"im1.jpg"];UIImage* ima2 = [UIImage imageNamed:@"im2.jpg"];//为图片按钮设置当状态不同呈现的图片[btnp setImage:ima1 forState:UIControlStateNormal];[btnp setImage:ima2 forState:UIControlStateHighlighted];[self.view addSubview:btnp];//UIButton事件[btn addTarget:self action:@selector(action01:) forControlEvents:UIControlEventTouchUpInside];}-(void) action02
{NSLog(@"Don't fukin touch it");
}- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view.[self createUIRectButton];[self creatBtn];
}@end

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

UIButton事件结果:
在这里插入图片描述

UIButton事件

  • addTarget:selfaction:@selector(action02)forControlEvents:UIControlEventTouchUpInside]:向按钮添加事件的函数,当函数满足第三处要求时,执行第二处的方法。
  • UIControlEventTouchUplnside:当目标在控件内部结束触摸屏幕并松开时(在按钮范围内),会触发该事件。
  • UIControlEventTouchUpOutside:当目标在控件内部结束触摸屏幕并松开时(在按钮范围外结束),会触发该事件。
  • UIControlEventTouchDown:当目标在控件内部开始触摸屏幕(按钮)时,触发该事件。
  • 可以一个事件控制几个按钮,例如程序中的玛卡巴卡和汤姆布利波,这里为了区分两个按钮,使用btn.tag区分两个按钮,也可以一个按钮触发多个事件。

UIView

UIView

  • 是iOS的视图对象
  • 是所有显示在屏幕上的基础类。
  • 所有显示在屏幕上的对象,都继承于UIView
  • UIView有背景颜色,矩形对象,有层级关系

示例程序

@implementation ViewController-(void) create
{//创建一个UIView对象UIView* view = [[UIView alloc] init];view.frame = CGRectMake(80, 200, 100, 100);view.backgroundColor = [UIColor redColor];//将视图做为父视图的子视图管理起来[self.view addSubview:view];//view1.backgroundColor = [UIColor greenColor];//[self.view addSubview:view1];
}- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view.[self create];
}@end

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

UIView对象的隐藏

    view.hidden = NO;//YES即为隐藏视图,NO反之view1.alpha = .5;//透明度,1为完全不透明,0为完全透明view.opaque = NO;//设置是否显示不透明[view1 removeFromSuperview];//

上面是四种隐藏UIView对象的方法:

  • hidden:YES时即为隐藏视图,NO反之(默认为NO)。
  • alpha: 设置透明度,1为完全不透明,0为完全透明,半透明时会显示父类对象的底色。
  • removeSuperview:将自己从父类视图的管理中删除掉,也就不会显示在屏幕上

UIView的层级关系

示范程序

@implementation ViewController-(void) create
{UIView* view = [[UIView alloc] init];view.frame = CGRectMake(100, 100, 100, 100);view.backgroundColor = [UIColor redColor];UIView* view1 = [[UIView alloc] init];view1.frame = CGRectMake(125, 125, 100, 100);view1.backgroundColor = [UIColor greenColor];UIView* view2 = [[UIView alloc] init];view2.frame = CGRectMake(150, 150, 100, 100);view2.backgroundColor = [UIColor blueColor];//谁先被添加谁先绘制[self.view addSubview:view];[self.view addSubview:view1];[self.view addSubview:view2];//将某一个视图调整到最前面来[self.view bringSubviewToFront:view];//把某一个调整到最后[self.view sendSubviewToBack:view];//subviews是管理self.view的子视图的数组UIView* viewfront = self.view.subviews[2];UIView* viewback = self.view.subviews[0];if(viewfront == view2) {NSLog(@"相等");}
}- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view.[self create];
}
  • 当层级重叠时,谁先被添加就先绘制谁
  • bringSubviewToFront:把某个层级移动最上层。
  • sendSubviewToBack把某个层级移到最下层。
  • subviews管理self.view的子视图的数组。

运行结果在这里插入图片描述
在这里插入图片描述

UIWindow

注意:
老版本UIWindow的代码是写在“AppDelegate.m”中的。但是现在都不在这里写了,现在写到SceneDelegate.m里面,而且UIWindow对象不需要你手动创建了。

一个UIWindow对象为应用程序的用户界面提供了背景以及重要的事件处理行为。
UIWindow继承自UIView,每一个view,想要出现在屏幕上都依赖于window,但是程序中的window之间是相互独立的。应用程序收到事件之后会先转发给适当的window对象,从而又将事件转发给view对象。

具体来说,UIWindow有以下几个主要功能:

  • 视图层次结构视图:
    UIWindow是应用程序的层次结构视图,其整体视图是附属于UIWindow子视图。
    当应用程序启动时,系统会自动创建一个UIWindow实例并将其设置为应用程序的主窗口。
  • 接收和分发事件:
    UIWindow负责接收来自用户的输入事件,例如触摸事件、按键事件等。
    UIWindow会根据视图层次结构将这些事件分配给合适的视图进行处理。
  • 管理视图控制器:
    UIWindow可以持有一个根基健全的模型,特别是一个UIViewController实例。
  • 多窗口支持:
    特定特殊场景下,例如iPad的分屏,应用程序可以创建多个UIWindow实例。
    每个UIWindow都有自己的视点层次结构,相互独立。
  • 状态栏管理:
    UIWindow负责管理应用程序的状态栏,例如电池电量、网络信号等图标的显示。

示例代码

- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions {//创建一个视图跟踪器作为UIWindow的根视控制器self.window.rootViewController = [[UIViewController alloc] init];//设置window的颜色self.window.backgroundColor = [UIColor blueColor];//将window有效的显示在屏幕上[self.window makeKeyAndVisible];//直接给UIWindow上添加视图UIView* view = [[UIView alloc] initWithFrame:CGRectMake(100, 200, 50, 50)];view.backgroundColor = [UIColor greenColor];UIView* backview = [[UIView alloc] initWithFrame:CGRectMake(50, 200, 300, 300)];backview.backgroundColor = [UIColor redColor];[self.window addSubview:backview];//子视图的坐标会随着父视图的坐标改变而改变[backview addSubview:view];//打印不同对象的window属性,可以看出他们是同一个windowNSLog(@"%@", view.window);NSLog(@"%@", backview.window);NSLog(@"%@", self.window);
}

打印结果
在这里插入图片描述
效果图
在这里插入图片描述

UIViewController

UIViewController是一个视图控制器,在整个UIKit中只有一个根视图控制器,属于window的属性。视图控制器用来管理界面和处理界面的逻辑类对象,程序启动前必须对根视图控制器赋值。

先新建一个View02类

#import "View02.h"@interface View02 ()@end@implementation View02- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view.//给视图控制器设置背景颜色self.view.backgroundColor = [UIColor greenColor];
}- (void) touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {//使当前的控制器消失掉,传入两个参数//第一个参数指是否有动画效果//第二个参数指结束后是否调用block块操作,不需要为nil[self dismissViewControllerAnimated: YES completion: nil];
}/*
#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
#import "ViewController.h"
#import "View02.h"@interface ViewController ()@end@implementation ViewController-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{//创建视图控制器二View02* vc= [[View02 alloc] init];//显示一个新的视图控制器界面到屏幕上来//第一个参数:新的视图控制器//第二个参数:是否是用动画切换效果//第三个参数:切换后是否使用block块,不使用为nil[self presentViewController:vc animated:YES completion:nil];
}//当视图控制器第一次被加载视图时,调用此函数。
//当布局初始化视图来使用。
- (void)viewDidLoad {//默认情况下调用父类的加载视图函数[super viewDidLoad];// Do any additional setup after loading the view.UIView* view = [[UIView alloc] init];view.backgroundColor = [UIColor greenColor];view.frame = CGRectMake(100, 100, 100, 200);self.view.backgroundColor = [UIColor redColor];[self.view addSubview:view];
}
//视图即将显示,调用此函数
//参数:表示是否用动画切换后消失
//当前的状态:视图还没有显示
-(void) viewWillAppear:(BOOL)animated
{NSLog(@"即将显示");
}//视图即将消失,调用此函数
//参数:表示是否用动画切换后消失
//当前的状态:视图还是在屏幕上
-(void) viewWillDisappear:(BOOL)animated
{NSLog(@"即将消失");
}-(void) viewDidAppear:(BOOL)animated
{NSLog(@"已经显示");
}-(void) viewDidDisappear:(BOOL)animated
{NSLog(@"已经消失");
}@end

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

点击后效果图
在这里插入图片描述

定时器与视图对象

定时器对象

  • 可以在每个固定时间发送一个消息
  • 通过此函数可在固定时间段来完成一个根据时间间隔的任务
  • 通过此消息来调用相应的时间函数

接口部分

#import <UIKit/UIKit.h>@interface ViewController : UIViewController {//定义一个定时器对象//可以在每个固定时间发送一个消息//通过此消息来调用相应的时间函数//通过此函数可在固定时间段来完成一个根据时间间隔的任务NSTimer* _timerView;
}@property (retain, nonatomic) NSTimer* timerView;
@end

实现部分

#import "ViewController.h"@interface ViewController ()@end@implementation ViewController
//属性和成员变量的同步
@synthesize timerView = _timerView;- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view.//启动定时器按钮UIButton* btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];btn.frame = CGRectMake(100, 100, 80, 40);[btn setTitle:@"启动定时器" forState:UIControlStateNormal];[btn addTarget:self action:@selector(pressStart) forControlEvents:UIControlEventTouchUpInside];[self.view addSubview:btn];//停止定时器按钮UIButton* btnstop = [UIButton buttonWithType:UIButtonTypeRoundedRect];btnstop.frame = CGRectMake(100, 200, 80, 40);[btnstop setTitle:@"停止定时器" forState:UIControlStateNormal];[btnstop addTarget:self action:@selector(pressStop) forControlEvents:UIControlEventTouchUpInside];[self.view addSubview:btnstop];UIView* view = [[UIView alloc] init];view.backgroundColor = [UIColor greenColor];view.frame = CGRectMake(0, 0, 80, 80);[self.view addSubview:view];//设置view的标签值//通过父亲视图对象以及view的标签值可以获得相应的视图对象view.tag = 111;}
-(void) pressStart
{//NSTtimer类方法创建一个定时器并且启动这个定时器//P1:每隔多久调用定时器函数,以秒数为单位的整数(调用第三个参数)//P2:表示实现定时器函数的对象指针//P3:定时器函数对象//P4:可以传入定时器函数中一个参数,无参数可以传nil//P5:定时器是否重复操作;YES为重复;NO为只完成一次函数调用//返回值为一个新建好的定时器对象_timerView = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(updateTimer:) userInfo:@"美羊羊" repeats:YES];}//定时器函数
//可以将定时器本身做为参数传入
-(void) updateTimer:(NSTimer*) timer
{NSLog(@"开始啦,%@", timer.userInfo);UIView* view = [self.view viewWithTag:111];view.frame = CGRectMake(view.frame.origin.x + 1, view.frame.origin.y + 1, 80, 80);
}-(void) pressStop
{if(_timerView != nil) {[_timerView invalidate];}//[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(stop) userInfo:nil repeats:NO];//NSLog(@"停止啦");
}-(void) stop
{NSLog(@"停止啦");
}@end

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

UISwitch

  • UISwitch是一个开关控件,有开、关两种状态可以切换,是定义在UIKit库中的一个控件
  • 苹果官方的控件都定义在UIKit框架中,且UIKit框架中的所有控件都以UI开头
@interface ViewController : UIViewController {//定义一个开关控件//可以进行状态的改变//开:关:两种状态可以进行切换//所有UIKit框架库中的控件均以UI开头//苹果官方的控件都定义在UIKit框架中UISwitch* _myswitch;
}@property (retain, nonatomic) UISwitch* myswitch;@end
@implementation ViewController
//同步属性和成员变量
@synthesize myswitch = _myswitch;
- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view.//创建一个开关对象//继承与UIView_myswitch = [[UISwitch alloc] init];//苹果官方的控件的位置设置//位置X,Y的值可以改变,宽度和高度无法改变_myswitch.frame = CGRectMake(100, 200, 80, 40);//_myswitch.backgroundColor = [UIColor blueColor];//开关状态设置属性//YES:开启状态;NO:关闭状态_myswitch.on = YES;//也可以使用set函数//[_myswitch setOn:YES];//设置开关状态//P1:状态设置//P2:是否开启动画效果[_myswitch setOn:YES animated:YES];[self.view addSubview:_myswitch];//设置开启状态的风格颜色[_myswitch setOnTintColor:[UIColor redColor] ];//改变开关按钮的颜色[_myswitch setThumbTintColor:[UIColor blueColor]];//设置整体风格颜色//[_myswitch setTintColor:[UIColor purpleColor]];//向开关控件添加事件函数//每次改变的时候都会调用swChange函数[_myswitch addTarget:self action:@selector(swChange:) forControlEvents:UIControlEventValueChanged];//self.view.backgroundColor = [UIColor blueColor];
}-(void) swChange:(UISwitch*) sw
{if(sw.on == YES)NSLog(@"开关被打开");elseNSLog(@"开关被关上");
}@end

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

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

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

相关文章

AI学习指南数学工具篇-Python中的凸优化库

AI学习指南数学工具篇-Python中的凸优化库 在人工智能和机器学习领域&#xff0c;凸优化是一个非常重要的数学工具。它可以帮助我们解决各种问题&#xff0c;包括线性规划、二次规划、半定规划等。而在Python中&#xff0c;有一个非常优秀的凸优化库&#xff0c;即CVXPY。本文…

做好开源快速开发平台研发创新 助力行业高效发展!

随着信息化时代的到来&#xff0c;科技的力量无处不在。为了提高办公效率&#xff0c;很多大中型企业倾向于使用更为先进的软件平台来助力企业降本增效。在众多助力神器之中&#xff0c;开源快速开发平台低代码技术平台深得广大新老客户朋友的喜爱&#xff0c;它与生俱来的优势…

结合PyTest和Selenium进行网页自动化测试的例子

一个结合PyTest和Selenium进行网页自动化测试的示例。 这个测试用例模拟了一个简单的用户登录过程&#xff0c;并包含了对登录后页面状态的断言。我们将使用Selenium的WebDriver来控制浏览器&#xff0c;并使用PyTest来进行断言。 import pytest from selenium import webdri…

vue2+echarts地图下钻+地图遮盖物散点

一、下载工具 npm i echarts echarts-gl axios -S -S是生产依赖默认是-S不写也可以 -D是开发依赖 二、引入工具 import * as echarts from "echarts"; import "echarts-gl"; import axios from "axios"; 三、HTML部分代码 <div class&…

微信小程序路由跳转

1. wx.navigateTo 作用&#xff1a;保留当前页面&#xff0c;跳转到应用内的某个页面。特点&#xff1a;跳转后目标页面的生命周期函数 onLoad 和 onShow 会被触发。使用场景&#xff1a;一般用于跳转到应用内的其他页面&#xff0c;保留当前页面的状态&#xff0c;例如从文章…

Java数据类型

一、每种数据都定义了 明确的数据类型&#xff0c;在内存中分配了不同大小的 内存空间(字节)。 二、Java数据类型分为两种&#xff1a; 基本数据类型&#xff1a; 数值型&#xff1a; 整数类型&#xff0c;存放整数(byte[1] , short[2] , int[4] , long[8]) 浮点类型&#xff0…

UE5 读取本地图片并转换为base64字符串

调试网址&#xff1a;在线图像转Base64 - 码工具 (matools.com) 注意要加&#xff08;data:image/png;base64,&#xff09; FString UBasicFuncLib::LoadImageToBase64(const FString& ImagePath) {TArray<uint8> ImageData;// Step 1: 读取图片文件到字节数组if (!…

【蓝桥杯】第十四届蓝桥杯大赛软件赛国赛C/C++ 大学 B 组

答题结果页 - 蓝桥云课 (lanqiao.cn) 0子2023 - 蓝桥云课 (lanqiao.cn)&#xff08;暴力枚举 #include<bits/stdc.h> using lllong long; using ullunsigned long long; #define fir first #define sec second //#define int llconst int N1e510; const int mod1e97;int…

C++标准模板(STL)- C 内存管理库 - 分配内存 (std::malloc)

C 内存管理库 分配内存 std::malloc 定义于头文件 <cstdlib> void* malloc( std::size_t size ); 分配 size 字节的未初始化存储。 若分配成功&#xff0c;则返回指向分配的适合对任何标量类型对齐的内存块中&#xff0c;最低&#xff08;首&#xff09;字节的指针…

HT46R002 贴片 SOP8 经济型AD型OTP MCU单片机芯片

HT46R002在智能家居中的具体应用案例可以包括以下几个方面&#xff1a; 1. 智能照明控制&#xff1a;可以用于控制LED灯的亮度和色温&#xff0c;甚至可以通过手机APP远程控制开关和调节灯光效果。 2. 环境监测&#xff1a;用于监测室内温度、湿度、空气质量等&#xff0c;当检…

PostgreSQL和GaussDB对比

PostgreSQL和GaussDB对比 GaussDB 是华为推出的一款基于 PostgreSQL 的企业级数据库产品&#xff0c;通过对 PostgreSQL 进行一系列优化和扩展&#xff0c;使其更加适应企业应用的需求。以下是 PostgreSQL 和 GaussDB 两者之间的对比&#xff0c;从多个方面进行分析&#xff0…

httpJVM

目录 HTTPS如何保证安全 1&#xff09;引入非对称加密 2&#xff09;引入非对称加密 3.中间人攻击 4.解决中间人攻击 JVM 1.JVM内存划分 2.JVM类加载过程 八股内容 3.JVM中的垃圾回收机制 释放垃圾的策略 1.标记-清除 2.复制算法 3.标记-整理 分代回收 HTTPS如何…

GB-T 43696-2024 网络安全技术 零信任参考体系架构

GB-T 43696-2024 网络安全技术 零信任参考体系架构 编写背景 随着网络环境的日益复杂&#xff0c;传统的网络安全策略已经难以满足现代企业的需求。为了应对不断变化的安全威胁&#xff0c;零信任安全模型应运而生。GB-T 43696-2024《网络安全技术 零信任参考体系架构》是中国…

Android Graphics图形栈SurfaceFlinger之间各种Layer以及对应Buffer之间的关系

Android Graphics图形栈SurfaceFlinger之间各种Layer以及对应Buffer之间的关系 SurfaceFlinger layer之间的对应关系

MyBatis学习笔记(周五前学完)

MyBatis-Plus是一个MyBatis的增强工具。在MyBatis的基础上只做增强不做改变&#xff0c;为简化开发、提高效率而生。 通过MyBatis-Plus来进行数据插入时&#xff0c;它默认会 使用雪花算法来生成id&#xff0c;长度比较长 增删改的返回值都是统一的&#xff0c;影响的只有行数。…

给pdf加水印,python实现

from PyPDF2 import PdfReader, PdfWriterdef add_watermark(pdf_file_in, pdf_file_mark, pdf_file_out):"""把水印添加到pdf中"""pdf_output PdfWriter()input_stream open(pdf_file_in, rb)pdf_input PdfReader(input_stream, strictFalse…

基于魔搭开源推理引擎 DashInfer实现CPU服务器大模型推理--理论篇

前言 在人工智能技术飞速发展的今天&#xff0c;如何高效地在CPU上运行大规模的预训练语言模型&#xff08;LLM&#xff09;成为了加速生成式AI应用广泛落地的核心问题。阿里巴巴达摩院模型开源社区ModelScope近期推出了一款名为DashInfer的推理引擎&#xff0c;旨在解决这一挑…

机器学习补充学习

1、Adaboost算法 Adaboost算法是一种集成学习方法&#xff0c;通过结合多个弱学习器来构建一个强大的预测模型。核心思想&#xff1a;如果一个简单的分类器在训练数据上犯错误&#xff0c;那么它在测试数据上也可能犯错误。 Adaboost通过迭代地训练一系列的分类器&#xff0c…

QT-demo:0轴分布图表

版本&#xff1a;5.9 第一种: 使用 PyQt5 和 Matplotlib 库 安装所需的库&#xff1a; pip install PyQt5 matplotlib创建和显示图表&#xff1a; import sys import numpy as np import matplotlib.pyplot as plt from PyQt5.QtWidgets import QApplication, QMainWindow f…

【busybox记录】【shell指令】ln

目录 内容来源&#xff1a; 【GUN】【ln】指令介绍 【busybox】【ln】指令介绍 【linux】【ln】指令介绍 使用示例&#xff1a; 创建链接文件 - 链接文件&#xff08;默认 - 硬链接&#xff09; 创建链接文件 - 链接文件&#xff08;软链接&#xff09; 创建链接文件 -…