当前位置: 首页 > article >正文

UI----4

UI----4一、分栏控制器UITabBarController1. 作用管理多个平级界面底部显示标签栏点击切换不同页面类似微信底部首页、通讯录、我。2. 核心特点是容器控制器不自己显示内容只管理子控制器底部tabBar高度固定系统自动管理子控制器一般是UINavigationController带导航栏3.代码创建// 1. 创建分栏控制器UITabBarController*tabVC[[UITabBarController alloc]init];// 2. 创建多个子界面FirstViewController*firstVC[[FirstViewController alloc]init];SecondViewController*secondVC[[SecondViewController alloc]init];// 3. 给子界面设置 tab 样式标题图标firstVC.tabBarItem.title首页;firstVC.tabBarItem.image[UIImage imageNamed:home];secondVC.tabBarItem.title我的;secondVC.tabBarItem.image[UIImage imageNamed:mine];// 4. 包装导航控制器推荐UINavigationController*nav1[[UINavigationController alloc]initWithRootViewController:firstVC];UINavigationController*nav2[[UINavigationController alloc]initWithRootViewController:secondVC];// 5. 添加到分栏控制器tabVC.viewControllers[nav1,nav2];// 6. 设置为窗口根控制器self.window.rootViewControllertabVC;4.代码实例SceneDelegate//.h#importUIKit/UIKit.hinterfaceSceneDelegate:UIResponderUIWindowSceneDelegate,UITabBarControllerDelegateproperty(strong,nonatomic)UIWindow*window;end//.m#importSceneDelegate.h#importVCF.h#importVCS.h#importVCT.h#importVCFo.h#importVCFi.h#importVCSi.hinterfaceSceneDelegate()endimplementationSceneDelegate-(void)scene:(UIScene*)scene willConnectToSession:(UISceneSession*)session options:(UISceneConnectionOptions*)connectionOptions{VCF*vc1[[VCF alloc]init];vc1.titleFirst;VCS*vc2[[VCS alloc]init];vc2.titlesecond;VCT*vc3[[VCT alloc]init];vc3.titlethird;VCFo*vc4[[VCFo alloc]init];vc4.title4;VCFi*vc5[[VCFi alloc]init];vc5.title5;VCSi*vc6[[VCSi alloc]init];vc6.title6;vc2.view.backgroundColor[UIColor blueColor];vc3.view.backgroundColor[UIColor redColor];UITabBarController*tbc[[UITabBarController alloc]init];NSArray*arrvc[NSArray arrayWithObjects:vc1,vc2,vc3,vc4,vc5,vc6,nil];tbc.viewControllersarrvc;self.window.rootViewControllertbc;tbc.selectedIndex2;if(tbc.selectedViewControllervc3){NSLog(2的视图控制器);}tbc.tabBar.translucentNO;//透明tbc.tabBar.backgroundColor[UIColor colorWithRed:0green:0blue:0alpha:0.5];tbc.delegateself;}-(void)tabBarController:(UITabBarController*)tabBarController willBeginCustomizingViewControllers:(NSArray__kindof UIViewController**)viewControllers{NSLog(编辑前);}-(void)tabBarController:(UITabBarController*)tabBarController willEndCustomizingViewControllers:(NSArray__kindof UIViewController**)viewControllers changed:(BOOL)changed{NSLog(结束前);}-(void)tabBarController:(UITabBarController*)tabBarController didEndCustomizingViewControllers:(NSArray__kindof UIViewController**)viewControllers changed:(BOOL)changed{if(changedYES){NSLog(顺序发生变化);}NSLog(已结束);}-(void)tabBarController:(UITabBarController*)tabBarController didSelectViewController:(UIViewController*)viewController{NSLog(选中控制器对象);}VCF//.h#importUIKit/UIKit.hNS_ASSUME_NONNULL_BEGINinterfaceVCF:UIViewControllerendNS_ASSUME_NONNULL_END//.m#importVCF.hinterfaceVCF()endimplementationVCF-(void)viewDidLoad{[superviewDidLoad];// Do any additional setup after loading the view.UITabBarItem*tabBarItem1[[UITabBarItem alloc]initWithTitle:探索image:nil tag:101];tabBarItem1.badgeValue78;self.tabBarItemtabBarItem1;self.view.backgroundColor[UIColor greenColor];}二、多界面传值1. 代理传值DelegateOC 经典传值方式系统控件全用代理。步骤B 定义协议A 遵守协议B 调用代理方法A 实现方法接收值2.代码演示SceneDelegate#importSceneDelegate.h#importVCFirst.h#importVCSecond.h#importVCThird.hinterfaceSceneDelegate()endimplementationSceneDelegate-(void)scene:(UIScene*)scene willConnectToSession:(UISceneSession*)session options:(UISceneConnectionOptions*)connectionOptions{// Use this method to optionally configure and attach the UIWindow window to the provided UIWindowScene scene.// If using a storyboard, the window property will automatically be initialized and attached to the scene.// This delegate does not imply the connecting scene or session are new (see application:configurationForConnectingSceneSession instead).self.window.frame[UIScreen mainScreen].bounds;[self.window makeKeyAndVisible];VCFirst*vcFirst[[VCFirst alloc]init];vcFirst.title视图一;vcFirst.view.backgroundColor[UIColor whiteColor];UINavigationController*nav[[UINavigationController alloc]initWithRootViewController:vcFirst];VCThird*vcThird[[VCThird alloc]init];vcThird.title视图三;vcThird.view.backgroundColor[UIColor greenColor];UINavigationController*nav3[[UINavigationController alloc]initWithRootViewController:vcThird];NSArray*array[[NSArray alloc]initWithObjects:nav,vcThird,nil];UITabBarController*tabVC[[UITabBarController alloc]init];tabVC.viewControllersarray;self.window.rootViewControllertabVC;}VCFirst//.h#importUIKit/UIKit.h#importVCSecond.hNS_ASSUME_NONNULL_BEGINinterfaceVCFirst:UIViewControllerVCSecondDelegate-(void)changeColor:(UIColor*)color;end//.m#importVCFirst.h#importVCSecond.hinterfaceVCFirst()endimplementationVCFirst-(void)viewDidLoad{[superviewDidLoad];// Do any additional setup after loading the view.}-(void)touchesBegan:(NSSetUITouch**)touches withEvent:(UIEvent*)event{VCSecond*vc[[VCSecond alloc]init];vc.view.backgroundColor[UIColor orangeColor];[self.navigationController pushViewController:vc animated:YES];vc.delegateself;}-(void)changeColor:(UIColor*)color{self.view.backgroundColorcolor;}VCSecond//.m#importUIKit/UIKit.hNS_ASSUME_NONNULL_BEGINprotocolVCSecondDelegateNSObject-(void)changeColor:(UIColor*)color;endinterfaceVCSecond:UIViewControllerproperty(assign,nonatomic)NSInteger tag;//定义一个代理对象执行协议函数property(assign,nonatomic)idVCSecondDelegatedelegate;endNS_ASSUME_NONNULL_END//.m#importVCSecond.hinterfaceVCSecond()endimplementationVCSecond-(void)viewDidLoad{[superviewDidLoad];// Do any additional setup after loading the view.self.view.backgroundColor[UIColor purpleColor];UIBarButtonItem*btnChange[[UIBarButtonItem alloc]initWithTitle:改变颜色style:UIBarButtonItemStyleDone target:selfaction:selector(pressChange)];self.navigationItem.rightBarButtonItembtnChange;}-(void)pressChange{[_delegate changeColor:[UIColor redColor]];}三、UITableView表格视图1. 核心概念必须设置dataSource数据源和delegate代理用复用机制节省内存滑动不卡顿组成UITableViewUITableViewCell2. 必须实现的 3 个方法// 1. 每组有多少行-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{returnself.dataArray.count;}// 2. 每行显示什么内容核心-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{// 复用标识符staticNSString*IDcellID;// 从复用池取 cellUITableViewCell*cell[tableView dequeueReusableCellWithIdentifier:ID];// 没有就创建if(!cell){cell[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];}// 赋值cell.textLabel.textself.dataArray[indexPath.row];returncell;}// 3. 行高-(CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{return60;}3.创建 UITableView 步骤// 1. 创建UITableView*tableView[[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];// 2. 设置数据源和代理tableView.dataSourceself;tableView.delegateself;// 3. 添加到视图[self.view addSubview:tableView];4.常用代理方法// 点击 cell 触发-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath{NSLog(点击了第%ld行,indexPath.row);// 取消选中[tableView deselectRowAtIndexPath:indexPath animated:YES];}// 设置组头、组尾-(NSString*)tableView:(UITableView*)tableView titleForHeaderInSection:(NSInteger)section{return我是组头;}5.刷新数据// 刷新整个表格[self.tableView reloadData];// 刷新某一行[self.tableView reloadRowsAtIndexPaths:[indexPath]withRowAnimation:UITableViewRowAnimationNone];6.代码SceneDelegate#importSceneDelegate.h#importViewController.hinterfaceSceneDelegate()endimplementationSceneDelegate-(void)scene:(UIScene*)scene willConnectToSession:(UISceneSession*)session options:(UISceneConnectionOptions*)connectionOptions{// Use this method to optionally configure and attach the UIWindow window to the provided UIWindowScene scene.// If using a storyboard, the window property will automatically be initialized and attached to the scene.// This delegate does not imply the connecting scene or session are new (see application:configurationForConnectingSceneSession instead).self.window.frame[UIScreen mainScreen].bounds;UINavigationController*nav[[UINavigationController alloc]initWithRootViewController:[[ViewController alloc]init]];self.window.rootViewControllernav;[self.window makeKeyAndVisible];}ViewController#importUIKit/UIKit.hinterfaceViewController:UIViewControllerUITableViewDelegate,UITableViewDataSource{UITableView*_tableview;NSMutableArray*_arraydata;UIBarButtonItem*_btnedit;UIBarButtonItem*_btnfinish;UIBarButtonItem*_btndelete;BOOL _isedit;}end#importViewController.hinterfaceViewController()endimplementationViewController-(void)viewDidLoad{[superviewDidLoad];// Do any additional setup after loading the view._tableview[[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];_tableview.autoresizingMaskUIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;_tableview.delegateself;_tableview.dataSourceself;//数据视图的头部视图的设定_tableview.tableHeaderViewnil;_tableview.tableFooterViewnil;[self.view addSubview:_tableview];_arraydata[[NSMutableArray alloc]init];for(inti1;i20;i){NSString*str[NSString stringWithFormat:A %d,i];[_arraydata addObject:str];[selfcreatbtn];}}-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{return_arraydata.count;}-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView{return1;}-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{NSString*strIDID;UITableViewCell*cell[_tableview dequeueReusableCellWithIdentifier:strID];if(cellnil){cell[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:strID];}cell.textLabel.text_arraydata[indexPath.row];//单元格文字赋值cell.detailTextLabel.text子标题;returncell;}-(void)creatbtn{_iseditNO;_btnedit[[UIBarButtonItem alloc]initWithTitle:编辑style:UIBarButtonItemStylePlain target:selfaction:selector(pressedit)];_btnfinish[[UIBarButtonItem alloc]initWithTitle:完成style:(UIBarButtonItemStylePlain)target:selfaction:selector(pressfinish)];_btndelete[[UIBarButtonItem alloc]initWithTitle:删除style:(UIBarButtonItemStylePlain)target:selfaction:selector(pressdelete)];self.navigationItem.rightBarButtonItem_btnedit;}-(void)pressedit{_iseditYES;self.navigationItem.rightBarButtonItem_btnfinish;[_tableview setEditing:YES];self.navigationItem.leftBarButtonItem_btndelete;}-(void)pressfinish{_iseditNO;self.navigationItem.rightBarButtonItem_btnedit;[_tableview setEditing:NO];self.navigationItem.leftBarButtonItemnil;}//单元格显示效果协议-(UITableViewCellEditingStyle)tableView:(UITableView*)tableView editingStyleForRowAtIndexPath:(NSIndexPath*)indexPath{returnUITableViewCellEditingStyleDelete;}//可以显示编辑状态当手指滑动-(void)tableView:(UITableView*)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath*)indexPath{[_arraydata removeObjectAtIndex:indexPath.row];[_tableview reloadData];NSLog(delete);}-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath{NSLog(选中单元格%d,indexPath.row1);}-(void)tableView:(UITableView*)tableView didDeselectRowAtIndexPath:(NSIndexPath*)indexPath{NSLog(取消选中%d,indexPath.row1);}end

相关文章:

UI----4

UI----4 一、分栏控制器(UITabBarController) 1. 作用 管理多个平级界面,底部显示标签栏,点击切换不同页面(类似微信底部:首页、通讯录、我)。 2. 核心特点 是容器控制器,不自己显示…...

【2026年最新600套毕设项目分享】微信小程序软件缺陷管理系统(30176)

有需要的同学,源代码和配套文档领取,加文章最下方的名片哦 一、项目演示 项目演示视频 项目演示视频2 二、资料介绍 完整源代码(前后端源代码SQL脚本)配套文档(LWPPT开题报告/任务书)远程调试控屏包运…...

玩转 Python:多线程、装饰器、视觉检测与正则匹配实战

Python 作为一门简洁又强大的编程语言,在多线程编程、函数增强、计算机视觉、文本处理等多个领域都有着广泛的应用。本文将结合几个实用的代码案例,带你上手 Python 的多线程、装饰器、OpenCV 颜色检测和正则表达式匹配,从基础应用到实际场景…...

基于Python与LLM API构建轻量级命令行问答工具

1. 项目概述:一个轻量级命令行问答工具最近在折腾一些自动化脚本,经常需要在终端里快速查询一些信息,比如某个命令的用法、一个概念的简单解释,或者把一段代码从Python翻译成Go。每次都打开浏览器、切换标签页、输入关键词&#x…...

ARM RealView Debugger多项目管理与调试实战

1. ARM RealView Debugger多项目管理实战解析在嵌入式开发领域,高效管理多个关联项目是提升开发效率的关键。ARM RealView Debugger(以下简称RVD)通过容器项目(Container Project)机制,为开发者提供了强大的…...

AudioMoth Dev开发板:全频谱声学监测与生物声学研究利器

1. AudioMoth Dev开发板深度解析AudioMoth Dev是一款基于Silicon Labs EFM32 Wonder Gecko MCU的全频谱声学开发板,专为野外声学监测和生物声学研究设计。作为AudioMoth设备的开发版本,它保留了核心音频采集功能的同时,提供了更丰富的硬件接口…...

HarmonyOS APP开发之玩透 postCardAction 的三大通信心法

玩透 postCardAction 的三大通信心法做鸿蒙 UI 开发的兄弟,只要碰过服务卡片(Service Widget),多半都经历过这样一种“血压飙升”的时刻:产品经理想要在卡片上做一个简单的按钮交互,你顺手写了个点击事件&a…...

科学AI智能体的强化学习训练与应用实践

1. 科学智能体训练概述科研工作往往充斥着大量重复性劳动——文献查阅、实验流程管理、多模态数据处理等机械性工作占据了研究者大量时间。科学AI智能体的出现,正在改变这一现状。这类智能体能够承担文献综述、假设生成、实验规划、计算任务提交、实验室操作协调、结…...

ComfyUI Impact Pack完整安装指南:3步解决节点缺失问题

ComfyUI Impact Pack完整安装指南:3步解决节点缺失问题 【免费下载链接】ComfyUI-Impact-Pack Custom nodes pack for ComfyUI This custom node helps to conveniently enhance images through Detector, Detailer, Upscaler, Pipe, and more. 项目地址: https:/…...

农业数据主权危机:MCP 2026要求实时上传作业轨迹、油耗、工况等137个字段——你的ISOBUS网关真的合规吗?

更多请点击: https://intelliparadigm.com 第一章:农业数据主权危机的本质与MCP 2026立法动因 农业数据主权危机并非技术失灵的表象,而是全球粮食价值链中权力结构失衡的深层投射。当跨国农企平台通过IoT传感器、卫星遥感和农机API持续采集田…...

沙箱隔离失效的11个隐性信号,第8个已在金融客户生产环境触发RCE——MCP 2026隔离健康度自检清单

更多请点击: https://intelliparadigm.com 第一章:MCP 2026沙箱隔离失效的底层机理与威胁图谱 MCP 2026 是一种面向多租户云原生环境的轻量级容器化策略执行框架,其沙箱设计依赖于 Linux cgroups v2、user namespace 嵌套及 seccomp-bpf 策略…...

【U-Net 数据集制作】如何制作自己的图像分割数据集?(标注与格式转换),图像分割数据集制作与转换神器

前言 在前面的课程中,我们像搭积木一样手写了 U-Net 的网络架构。很多同学迫不及待地想把自己的图片喂进网络开始“炼丹”。但是,深度学习界有一句名言:“数据决定了模型的上限,而网络结构只是在逼近这个上限。” 在实际项目中,做数据准备往往比写网络更让人崩溃: 用标…...

贝叶斯网络原理与应用实战指南

1. 贝叶斯信念网络入门指南第一次接触贝叶斯网络时,我被那些复杂的箭头和条件概率表搞得晕头转向。直到有一次在医疗诊断项目中,我才真正理解这种概率图模型的强大之处——它能够直观地表达变量间的依赖关系,处理不确定性问题。本文将带您从零…...

Diffusers库实现AI图像修复与扩展的实战指南

1. 使用Diffusers库进行图像修复与扩展的完整指南在数字图像处理领域,图像修复(Inpainting)和图像扩展(Outpainting)是两项极具实用价值的技术。作为一名长期使用Stable Diffusion的开发者,我发现Hugging Face的Diffusers库为这些任务提供了强大的工具链…...

基于多智能体与RAG的DeepResearchAgent:AI驱动的自动化文献综述实践

1. 项目概述:一个能帮你“读论文”的智能研究助手最近在折腾AI Agent领域,发现了一个挺有意思的开源项目——SkyworkAI的DeepResearchAgent。简单来说,这玩意儿就是一个能帮你做深度文献调研的智能体。想象一下,你拿到一个全新的研…...

豆包AI与DeepSeek的区别

豆包AI和DeepSeek都是当前流行的中文大型语言模型(LLM)助手,但它们由不同公司开发,在背景、功能、性能和适用场景上存在差异。1. 开发者背景与起源豆包AI:由字节跳动公司(抖音、今日头条的母公司&#xff0…...

HTML头部元信息避坑指南技术文章大纲

HTML头部元信息避坑指南技术文章大纲核心元标签的常见错误与正确用法<meta charset>未声明或声明位置错误导致乱码 <title>过长或重复影响SEO与用户体验 <meta name"viewport">缺失导致移动端适配问题 <meta http-equiv>误用引发兼容性问题S…...

离婚案件数据分析系统设计:基于玉溪案例的抚养权判决预测模型

一、技术背景与问题定义作为一名在玉溪从事法律科技工作的从业者&#xff0c;我这些年一直在思考一个问题&#xff1a;抚养权判决的结果能不能被预测&#xff1f;说实话&#xff0c;传统上大家觉得这是不可能的——毕竟法官要综合考量那么多因素&#xff1a;孩子的意愿、父母双…...

数据科学实战:OSEMN框架详解与案例分析

1. 数据科学家如何系统化解决问题&#xff1a;OSEMN框架详解 作为一名从业多年的数据科学顾问&#xff0c;我经常被问到"数据科学家到底如何思考问题"。事实上&#xff0c;这个领域最宝贵的不是掌握多少算法&#xff0c;而是系统化解决问题的框架思维。今天我要分享的…...

信息熵:从概念到机器学习应用的全面解析

1. 信息熵的概念起源与核心定义信息熵这个概念最早由克劳德香农在1948年的论文《通信的数学理论》中提出&#xff0c;当时是为了解决通信系统中的信息量化问题。但有趣的是&#xff0c;这个概念其实脱胎于物理学中的热力学熵。香农在思考如何度量信息时&#xff0c;向著名数学家…...

Arduino与VL53L0X激光测距传感器开发指南

1. 项目概述&#xff1a;基于Arduino的ToF激光测距传感器应用开发激光测距技术在现代智能设备中扮演着越来越重要的角色。作为该技术的代表产品&#xff0c;ST VL53L0X ToF传感器凭借其毫米级精度、2米测距范围和940nm不可见激光等特性&#xff0c;被广泛应用于机器人避障、工业…...

stm32f103zet6使用STM32CubeMx移植原子fsmc(有讲解)

本次使用原子stm32f103zet64.3寸mcu屏&#xff0c;学了原子的例程发现虽然是hal库开发但是并没有使用stm32cubemx开发而是纯库函数&#xff0c;我之前的工程都是基于cubemx所以我想进行适配&#xff0c;现在把移植过程罗列如下&#xff0c;有问题可以评论区问我&#xff0c;stm…...

网络故障定位工具怎么搭配:Wireshark、tcpdump、监控平台各自该在什么时候上场?

网络故障定位工具怎么搭配&#xff1a;Wireshark、tcpdump、监控平台各自该在什么时候上场&#xff1f; 很多团队的网络排障效率低&#xff0c;不是因为没人干活&#xff0c;而是因为工具顺序用反了&#xff1a;明明问题还在“先确认范围”的阶段&#xff0c;就急着抓全量包&am…...

10华夏之光永存:盘古大模型开源登顶世界顶级——全系列终章总结与未来使命(第十篇)

10华夏之光永存&#xff1a;盘古大模型开源登顶世界顶级——全系列终章总结与未来使命&#xff08;第十篇&#xff09; 标签&#xff1a;#华为盘古 #终章总结 #国产AI自立自强 #华夏本源AI #世界顶级大模型开源全闭环 免责声明 本文为盘古大模型十篇系列开源连载最终篇、第十篇…...

TensorFlow.data API高效数据管道构建与优化实战

1. 理解TensorFlow.data API的核心价值第一次接触TensorFlow.data API时&#xff0c;我正面临一个图像分类项目的性能瓶颈。传统的数据加载方式导致GPU利用率长期低于30%&#xff0c;直到发现这个被低估的工具包。TensorFlow.data不是简单的数据读取接口&#xff0c;而是构建高…...

【限时开放】Docker AI Toolkit 2026企业版Beta通道关闭倒计时:3天内未注册将永久失去GPU调度优先权与联邦学习插件

更多请点击&#xff1a; https://intelliparadigm.com 第一章&#xff1a;Docker AI Toolkit 2026企业版Beta通道关闭前的关键认知 Docker AI Toolkit 2026企业版Beta通道将于2024年11月30日23:59&#xff08;UTC8&#xff09;正式终止注册与镜像拉取权限。所有未完成许可证绑…...

仿真一:与门运算

一、题目 用 Multisim 来仿真一个三输入与门&#xff0c;与门的输入波形为二进制数从 0∼70\sim70∼7 循环。 二、仿真内容 利用 Multisim 中的字生成器&#xff08;可从右侧快捷栏找到&#xff09;&#xff0c;来输入波形为二进制从 0∼70\sim70∼7 的循环。双击字发生器即可进…...

刚开始做 GEO:最容易做错的动作与起步误区拆解

GEO 起步阶段&#xff0c;不建议先按“发多少内容、测多少平台、截多少图”做验收。 更合适的第一轮目标是&#xff1a;固定一批真实问题&#xff0c;检查公开材料能不能被 AI 正确组织成回答。讲不准&#xff0c;先修材料&#xff1b;讲得泛&#xff0c;先补边界&#xff1b;讲…...

基于Golang的全流式AI语音后端:为智能硬件打造低延迟对话系统

1. 项目概述&#xff1a;一个为智能硬件量身打造的全流式AI语音后端 如果你正在折腾ESP32、树莓派这类物联网设备&#xff0c;想给它加上一个能听会说、还能“思考”的AI大脑&#xff0c;那你很可能已经踩过不少坑了。市面上的AI服务要么延迟高得没法实时对话&#xff0c;要么就…...

网球发球动作及发力指导

网球发球动作及发力指导 本文将系统讲解网球发球(Serve)的完整技术动作与发力原理,适用于初中级球员自学或教练教学参考。 目录 发球概述与技术分类 准备姿势与握拍 发球动作四阶段分解 动力链与发力原理 平击、上旋与切削发球 常见错误与纠正方法 针对性训练计划 核心要点总…...