ios 顶部tab((精选8篇))由网友“倒着撒娇”投稿提供,下面小编给大家整理ios 顶部tab,希望大家喜欢!
篇1:ios 顶部tab
主要使用了scrolview做的
//
// HJPagerViewController.h
// MusicLove
//
// Created by niuxinghua on 15/1/29.
// Copyright (c) Hjojo. All rights reserved.
//
#import
@interface HJPagerViewController :UIViewController
@property(nonatomic,strong)UIScrollView* scrolview;
@property(nonatomic,strong)UIButton* btn1;
@property(nonatomic,strong)UIButton* btn2;
@property(nonatomic,strong)UIButton* btn3;
@property(nonatomic,strong)UIImageView* imageLine;
@property(nonatomic,strong)UITableView* tableView;
@end
/
//
// HJPagerViewController.m
// MusicLove
//
// Created by niuxinghua on 15/1/29.
// Copyright (c) 20 Hjojo. All rights reserved.
//
#import “HJPagerViewController.h”
#import “MJRefresh.h”
NSString *const MJTableViewCellIdentifier =@“Cell1”;
/**
* 随机数据
*/
#define MJRandomData [NSString stringWithFormat:@“随机数据---%d”, arc4random_uniform(1000000)]
@interface HJPagerViewController
@property (strong,nonatomic) NSMutableArray *fakeData;
@end
@implementation HJPagerViewController
- (void)viewDidLoad {
[superviewDidLoad];
// Do any additional setup after loading the view.
self.tabBarController.tabBar.hidden=YES;
self.fakeData=[[NSMutableArrayalloc]init];
CGFloat mainWith=[UIScreenmainScreen].bounds.size.width;
CGFloat mainHeight=[UIScreenmainScreen].bounds.size.height;
_btn1=[[UIButtonalloc]initWithFrame.:CGRectMake(0,66, mainWith/3,40)];
_btn1.backgroundColor=[UIColorcolorWithRed:242/255.0green:87/255.0blue:96/255.0alpha:1.0f];
// [_btn1 setBackgroundColor:[UIColor blackColor]];
[_btn1setTitle:@“距离”forState:UIControlStateNormal];
_btn2=[[UIButtonalloc]initWithFrame.:CGRectMake(mainWith/3,66, mainWith/3,40)];
_btn2.backgroundColor=[UIColorcolorWithRed:242/255.0green:87/255.0blue:96/255.0alpha:1.0f];
[_btn2setTitle:@“价格”forState:UIControlStateNormal];
_btn3=[[UIButtonalloc]initWithFrame.:CGRectMake(mainWith/3*2,66, mainWith/3,40)];
_btn3.backgroundColor=[UIColorcolorWithRed:242/255.0green:87/255.0blue:96/255.0alpha:1.0f];
[_btn3setTitle:@“筛选”forState:UIControlStateNormal];
_imageLine=[[UIImageViewalloc]initWithFrame.:CGRectMake(0,104, mainWith/3,5)];
_imageLine.center=CGPointMake(mainWith/6,107.5);
[_imageLinesetBackgroundColor:[UIColorgreenColor]];
_scrolview=[[UIScrollViewalloc]initWithFrame.:CGRectMake(0,111, mainWith, mainHeight-111)];
_scrolview.delegate=self;
_scrolview.pagingEnabled=YES;
_scrolview.showsHorizontalScrollIndicator=NO;
_scrolview.bounces=NO;
_scrolview.contentSize=CGSizeMake(mainWith*3, mainHeight-111);
self.tableView=[[UITableViewalloc]initWithFrame.:CGRectMake(0,0, mainWith, mainHeight-111)];
// 2.集成刷新控件
[selfsetupRefresh];
[self.tableViewregisterClass:[UITableViewCellclass] forCellReuseIdentifier:MJTableViewCellIdentifier];
self.tableView.delegate=self;
self.tableView.dataSource=self;
UIImageView* image1=[[UIImageViewalloc]initWithFrame.:CGRectMake(0,0, mainWith, mainHeight-111)];
UIImageView* image2=[[UIImageViewalloc]initWithFrame.:CGRectMake(mainWith,0, mainWith, mainHeight-111)];
UIImageView* image3=[[UIImageViewalloc]initWithFrame.:CGRectMake(mainWith*2,0, mainWith, mainHeight-111)];
image1.backgroundColor=[UIColorredColor];
image2.backgroundColor=[UIColorblackColor];
image3.backgroundColor=[UIColorgreenColor];
[_scrolviewaddSubview:self.tableView];
[_scrolviewaddSubview:image2];
[_scrolviewaddSubview:image3];
[self.viewaddSubview:_btn1];
[self.viewaddSubview:_btn2];
[self.viewaddSubview:_btn3];
[self.viewaddSubview:_scrolview];
[self.viewaddSubview:_imageLine];
[_btn1setTag:101];
[_btn2setTag:102];
[_btn3setTag:103];
[_btn1addTarget:selfaction:@selector(btnClicked:)forControlEvents:UIControlEventTouchUpInside];
[_btn2addTarget:selfaction:@selector(btnClicked:)forControlEvents:UIControlEventTouchUpInside];
[_btn3addTarget:selfaction:@selector(btnClicked:)forControlEvents:UIControlEventTouchUpInside];
}
-(void)btnClicked:(UIButton*)sender{
int tag=[sendertag];
if (tag==101) {
[UIViewanimateWithDuration:0.5fanimations:^{
_imageLine.center=CGPointMake(self.view.bounds.size.width/6,_imageLine.center.y);
_scrolview.contentOffset=CGPointMake(0,0);
}];
}
elseif (tag==102){
[UIViewanimateWithDuration:0.5fanimations:^{
_imageLine.center=CGPointMake(self.view.bounds.size.width/2,_imageLine.center.y);
_scrolview.contentOffset=CGPointMake(self.view.bounds.size.width,0);
}];
}
else{
[UIView animateWithDuration:0.5f animations:^{
_imageLine.center=CGPointMake(self.view.bounds.size.width/6*5, _imageLine.center.y);
_scrolview.contentOffset=CGPointMake(self.view.bounds.size.width*2,0);
}];
}
}
-(void)scrollViewDidScroll:(UIScrollView*)scrollView{
_imageLine.center=CGPointMake(scrollView.contentOffset.x/3+self.view.bounds.size.width/6, _imageLine.center.y);
}
/**
* 集成刷新控件
*/
- (void)setupRefresh
{
// 1.下拉刷新(进入刷新状态就会调用self的headerRereshing)
// [self.tableView addHeaderWithTarget:self action:@selector(headerRereshing)];
// dateKey用于存储刷新时间,可以保证不同界面拥有不同的刷新时间
[self.tableView addHeaderWithTarget:self action:@selector(headerRereshing) dateKey:@“table”];
[self.tableView headerBeginRefreshing];
// 2.上拉加载更多(进入刷新状态就会调用self的footerRereshing)
[self.tableView addFooterWithTarget:self action:@selector(footerRereshing)];
// 设置文字(也可以不设置,默认的文字在MJRefreshConst中修改)
self.tableView.headerPullToRefreshText =@“下拉可以刷新了”;
self.tableView.headerReleaseToRefreshText =@“松开马上刷新了”;
self.tableView.headerRefreshingText =@“正在刷新中,
ios 顶部tab
,
。。”;
self.tableView.footerPullToRefreshText =@“上拉可以加载更多数据了”;
self.tableView.footerReleaseToRefreshText =@“松开马上加载更多数据了”;
self.tableView.footerRefreshingText =@“正在加载中。。。”;
}
#pragma mark 开始进入刷新状态
- (void)headerRereshing
{
// 1.添加假数据
for (int i =0; i<5; i++) {
[self.fakeData insertObject:MJRandomData atIndex:0];
}
// 2.模拟2秒后刷新表格UI(真实开发中,可以移除这段gcd代码)
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
// 刷新表格
[self.tableView reloadData];
// (最好在刷新表格后调用)调用endRefreshing可以结束刷新状态
[self.tableView headerEndRefreshing];
});
}
- (void)footerRereshing
{
// 1.添加假数据
for (int i =0; i<5; i++) {
[self.fakeData addObject:MJRandomData];
}
// 2.模拟2秒后刷新表格UI(真实开发中,可以移除这段gcd代码)
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
// 刷新表格
[self.tableView reloadData];
// (最好在刷新表格后调用)调用endRefreshing可以结束刷新状态
[self.tableView footerEndRefreshing];
});
}
#pragma mark - Table view data source
//- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
//{
// return 5;
//}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
returnself.fakeData.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MJTableViewCellIdentifier forIndexPath:indexPath];
cell.textLabel.text = self.fakeData[indexPath.row];
NSLog(@“%@”,self.fakeData[indexPath.row]);
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
/*
#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
篇2: 彩虹顶部是什么颜色
答案:紫色。
解析:
彩虹是气象中的一种光学现象。当阳光照射到半空中的雨点,光线被折射及反射,在天空上形成拱形的.七彩的光谱。彩虹七彩颜色,从外至内分别为:红、橙、黄、绿、青、蓝、紫。
天空中为什么会出现五颜六色的彩虹呢?雨后,天空中还悬浮着很多极小的水滴,太阳光沿着一定角度射入这些小水滴内,会产生两次折射和一次全反射,然后从水滴射出来,于是,太阳光色散成紫色在内,红色在外的七色彩带。这就是彩虹。其中红色光与入射光线所成的角度约为42°,紫色光所成的角度约为40°。类推,所以是紫色
相关阅读:
彩虹是气象中的一种光学现象。彩虹七彩颜色,从外至内分别为:红、橙、黄、绿、青、蓝、紫。
篇3:ios个人简历
刘*
二年以上工作经验|男|27岁(1989年11月24日)
居住地:南京
电 话:137******(手机)
E-mail:
最近工作[1年]
公 司:XX有限公司
行 业:计算机科学与技术
职 位:ios开发工程师
最高学历
学 历:本科
专 业:计算机科学与技术
学 校:南京
自我评价
1. 拥有丰富的ios项目开发经验;
2. 较强的系统设计能力及跟踪算法设计能力;
3. 精通ios编程及标定测试;
4. 较好的沟通与协调能力。
求职意向
到岗时间:立即到岗
工作性质:全职
希望行业:计算机科学与技术
目标地点:南京
期望月薪:面议/月
目标职能:ios开发工程师
工作经验
/12 — /12:XX有限公司[1年]
所属行业:计算机科学与技术
研发部 ios开发工程师
1. 参与项目执行,讨论项目执行流程;
2. 主导项目执行相关培训工作;
3. 随时跟进项目执行的进度及质量;
/10 — 2014/10:XX有限公司[1年]
所属行业:计算机科学与技术
研发部 ios开发工程师
1. 作为综合模块组长参与到项目实施中,主要负责前期准备工作,包括落实办公环境,项目人员入场,网络调研及网络整改等工作;
2. 负责综合模块管理及实施工作,包括业务调研与差异化分析工作,需求分析匹配工作,组织建模工作,系统部署,用户培训,权限管理,数据收集、导入及校核工作,试运行支持及建转运等工作;
3. 负责项目文档管理工作,撰写并核查项目各阶段产出文档等。
教育经历
/9— /6 南京 计算机科学与技术本科
证书
/12 大学英语四级
语言能力
英语(良好)听说(良好),读写(良好
篇4:ios个人简历
基本信息 个人相片
姓 名: 性 别: 男
民 族: 汉族 出生年月: 1991年2月7日
政治面貌: 共青团员 婚姻状况: 未婚
身 高: 168cm 体 重: 55kg
户 籍: 福建 现所在地: 厦门
毕业学校: 福建交通职业技术学院 学 历: 专科
专业名称: 计算机控制 毕业年份:
求职意向
职位性质: 全职
职位类别: 软件工程师,
职位名称: ios 软件工程师;
工作地区: 厦门市;
待遇要求: 4000-5000元/月
到职时间: 可随时到岗
技能专长
语言能力: 英语 三级普通话 标准
电脑水平: CAD四级,C语言一级,计算机等级一级
教育培训
教育背景:
时间 所在学校 学历
9月 - 206月 福建交通职业技术学院 专科
工作经历
所在公司: 厦门××××
时间范围: 10月 - 3月
公司性质: 民营/私营公司
所属行业: 计算机软件
担任职位: iOS 开发工程师
工作描述: 主要负责开发手机端的app
离职原因: 寻求长远发展
所在公司: ××××光电有限公司
时间范围: 2012年8月 - 205月
公司性质: 外商独资.外企办事处
所属行业: 计算机硬件
担任职位: 量测验证中心工程师助理
工作描述: 在厦门玉晶光电量测验证中心担任助理工程师,主要协助工程师进行检测仪器精密的提升。 曾推荐使用急停开关继电器,以控制正主要生产的iphone 5s镜头的检测机台马达跑位问题,有效的控制住了机台贵种设备的损坏率,挽回的损失几十万,从而提高了整个生产组的生产效率
离职原因: 寻求长期发展
其他信息
自我评价: 积极主动,吃苦耐劳,稳重,待人热情,工作认真负责,勇于创新。有很好的团队精神,很强的适应能力,纪律性强,工作积极配合,意志坚强,具有较强的无私奉献精神
联系方式
联系电话:×××××××××××
电子邮箱:
篇5:ios个人简历
求职目标:iOS工程师
姓名:
手机:1883xxxxx
邮箱:
性别:男
年龄:24
学历:本科
教育背景
.09-.07 XXXXX学院 计算机应用
主修课程
基本会计、统计学、市场营销、国际市场营销、市场调查与预测、商业心理学、广告学、公共关系学、货币银行学、经济法、国际贸易、大学英语、经济数学、计算机应用等。
工作经历
-04至2021-11 XXXX有限公司 iOS程序员
行业类别:互联网/电子商务
主要职责:• 协助经理对产品进行架构
负责界面“邻里圈”,“我的”,“周边商户”的代码编写
对用户反馈的问题,及时响应和解决问题
积极向团队反馈开发中发现的功能优化方案
-12至2021-04 XXXXXX培训公司 iOS学员
内容:进行iOS等相关学习,掌握开发中所需的技巧,以及编程思想,等独立完成项目
2013-08至2014-11 XXXXXX有限公司 运维工程师
主要职责 :该公司是海航旗下一个子公司, 该公司主要负责,飞机上互联网的建设,达到天地互联,还负责为飞机上,铺设平板电脑. 我负责平时平板电脑的维护,以及每月的 版本更新等
篇6:iOS UIApplication
整个应用程序的象征,一个应用程序就一个UIApplication对象,使用了单例设计模式,通过[UIApplication sharedApplication]访问这个单例对象,
1> 整个应用程序的象征,一个应用程序就一个UIApplication对象,使用了单例设计模式
2> 通过[UIApplication sharedApplication]访问这个单例对象
2.常见用法
1> 设置图标右上角的红色提示数字
app.applicationIconBadgeNumber = 10;
2> 设置状态栏的样式
app.statusBarStyle. = UIStatusBarStyleBlackOpaque;
3> 控制状态栏的显示和隐藏
app.statusBarHidden = YES;
4> 显示状态栏上面的圈圈
app.networkActivityIndicatorVisible = YES;
5> 打开外部资源
// URL : 一个资源的唯一路径
// URL的组成 == 协议头://主机域名/路径
// 网络资源URL的组成 == www.baidu.com/1.png
// 本地文件资源URL的组成 == file:///Users/apple/Desktop/1.png
打开网页
[app openURL:[NSURL URLWithString:@“www.baidu.com”]];
打电话
[app openURL:[NSURL URLWithString:@“tel://10086”]];发短信
[app openURL:[NSURL URLWithString:@“sms://10086”]];6> 代理属性(当应用程序发生了一些系统级别的事件,就会通知代理,交给代理去处理)
@property(nonatomic,assign) id delegate;
UIApplicationDelegate的代理方法
pragma mark 程序加载完毕(启动完毕)就会调用一次
(BOOL)application:(UIApplication )application didFinishLaunchingWithOptions:(NSDictionary )launchOptions
pragma mark 应用程序失去焦点的时候调用(一个app如果失去焦点,就不能跟用户进行交互)
(void)applicationWillResignActive:(UIApplication *)application
pragma mark 程序进入后台就会调用
(void)applicationDidEnterBackground:(UIApplication *)application
pragma mark 程序即将进入前台的时候调用
(void)applicationWillEnterForeground:(UIApplication *)application
pragma mark 应用程序获得焦点的时候调用(一个app只有获得焦点之后才能跟用户进行交互)
(void)applicationDidBecomeActive:(UIApplication *)application
pragma mark 程序即将被关闭的时候可能会被调用
(void)applicationWillTerminate:(UIApplication *)application
pragma mark 程序接收到内存警告都会调用
(void)applicationDidReceiveMemoryWarning:(UIApplication *)application
1、状态栏UIStateBar的设置是在UIApplication里面设置的,它包含4中风格
2、 - (void)beginIgnoringInteractionEvents;
- (void)endIgnoringInteractionEvents;
- (BOOL)isIgnoringInteractionEvents;
这三种方法一般用于动画开始和结束设置,让动画执行期间,用户的其他触摸事件暂时不去响应,
这样就不用弄遮罩层了,视图上的其他控件就没法响应了,等到动画结束后才能响应。
3、@property(nonatomic,getter=isIdleTimerDisabled) BOOL idleTimerDisabled;
属性:用来设置屏幕是否进入睡眠,默认是NO,即默认是会进入睡眠的,一般情况下只有游戏或者是一直需要用户交互事件的才设置为YES,不让它空闲的时候自动进入睡眠
4、networkActivityIndicatorVisible
属性:设置网络那个小菊花是否一直转动,默认是NO,设置为YES后菊花一直转动
5、@property(nonatomic) NSInteger applicationIconBadgeNumber; //设置应用图标上的未读数目,类似QQ上的未读消息数目提醒
6、UIApplication是一个单例模式,整个app只有一个
7、canOpenUrl:(NSString*)url
此方法判断能否打开一个url资源
openUrl:(NSString *)url
打开一个url资源,如果这个url是另外一个app的url,另外一个app将会启动。url支持几种类型:http,https,电话、视频聊天、email
8、- (void)sendEvent:(UIEvent *)event
任何事件都可以在这里被截获
9、@property(nonatomic,readonly) NSArray *windows;跟keywindow
刚开始看了觉得很奇怪,不是说一个应用只有一个窗口吗?干嘛还弄个数组,结果一测试才知道输出来以后,除了window还有UITextEffetsWindow。网上查了keywindow是指当前活跃的window,与用户交互的window。而windows是指当前app打开的所有window,比如键盘也在一个window里面,alert也在一个window里面。在windows数组里面,window是根据windowLevel来排列的,最后一个覆盖在最上面。这里的windows数组不包括系统提供的window,比如说状态栏就是在一个系统创建的window里面
注意:keyWindow不是一成不变的,当你创建alertView或者ActionSheet的时候,它们所在的window会变成keyWindow。也就是说系统默认创建的window首先变成keywindow,而当弹框的时候,alertView所在的window变成keywindow,默认的keywindow变成非keywindow。
篇7:iOS UIslider
uisegmentedcontrol
是ios中的分段控件, 每个segment都能被点击,相当于集成了若干个button。 通常我们会点击不同的segment来切换不同的view
常用方法与属型
1.initwithitems: //uisegmentedcontrol独有的初始化?法,用来创建多个分段 2.settitle: forsegmentatindex: //为指定下标的分段设置title selectedsegmentatindex //(property)被选中的segment
3.tintcolor //(property)segmentedcontrol条的颜色(含每个segment的颜色)
4.addtarget: action: forcontrolevents: 给uisegmentedcontrol添加事件, controlevent为uicontroleventvaluechanged。
uislider
uislider是ios中的滑块控件。
通常用于控制视频播放进度,控制音量等。
它也是继承于uicontrol,滑块提供了一系列连续的值,滑块停在不 同的位置,获取到滑块上的值也不同。
常用方法与属性
minimumvalue //设置滑块的最小值
maximumvalue //设置滑块的最大值
value //设置滑块的当前值
minimumtracktinkcolor //定义划过区域的颜色
addtarget: action: forcontrolevents: 给uislider添加事件
controlevent为uicontroleventvaluechanged
uiimageview
常用方法与属性
image //设置图?
animationimages //设置一组动态图片
animationduration //设置播放一次一组动态图?片的时间 animationrepeatcount //设置重复次数 startanimating //开始动画
stopanimating //结束动画
uicontrol是所有控制类控件的基类,
uislider是可以响应滑动事件的控件
uisegmentedcontrol是可以实现单选的控件
uiimageview除了能显?单张图片,还能处理一组图?片的播放
篇8:IOS NSFetchResultsController
NSFetchedResultsController和UITableView集成起来处理数据具有强大的灵活性,首先得到的好处是不需要将数据记录进行分页,不然,按照传统的做法,需要先查询出总的记录,然后再从纪录里面过滤,这样会进行两次操作,对内存消耗很大,处理不好,程序甚至可能崩溃。使用NSFetchedResultsController类不仅简单,还具有更高的性能,这个类自动帮助你记录分页的事情,得到表对应的Core Data对象也非常简单。
更重要的是,你在其他界面更新或者删除记录时,NSFetchedResultsController可以帮助你同步更新UITableView,你的UITableView和数据库同步将变得非常简单。
以下是实现NSFetchedResultsController的委托方法
/* *NSFetchResultsController类是将一个获取请求和一个上下文作为其输入并在获取请求中的数据改变时调用该类的委托方法 */- (NSFetchedResultsController *)fetchedResultsController{ NSLog(@“fetchedResultsController”); //检测是否已经创建了fetchedResultsController if (_fetchedResultsController != nil) { return _fetchedResultsController; } /* *你需要一个获取请求和一个上下文以能够使用fetchedResultsController */ //你可以将获取请求视作SQL SELECT语句 NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; //基于上下文中的Event实体创建一个实体 NSEntityDescription *entity = [NSEntityDescription entityForName:@“Event” inManagedObjectContext:self.managedObjectContext]; //设置该实体由fetchRequest使用 [fetchRequest setEntity:entity]; //设置fetchRequest的批大小为单词接收的合理记录数量 [fetchRequest setFetchBatchSize:20]; //创建一个NSSortDescriptor,使用NSSortDescriptor对fetchRequest的结果排序(基于“timeStamp”字段降序排序) //(你可以将NSSortDescriptor视为SQL ORDER BY字句) NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@“timeStamp” ascending:NO]; NSArray *sortDescriptors = @[sortDescriptor]; [fetchRequest setSortDescriptors:sortDescriptors]; //需要一个获取请求和一个上下文以能够使用fetchedResultsController NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:self.managedObjectContext sectionNameKeyPath:nil cacheName:@“Master”]; aFetchedResultsController.delegate = self; self.fetchedResultsController = aFetchedResultsController; NSError *error = nil; if (![self.fetchedResultsController performFetch:&error]) { // Replace this implementation with code to handle the error appropriately. // abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. NSLog(@“Unresolved error %@, %@”, error, [error userInfo]); abort(); } return _fetchedResultsController;} //方法通知你“获取结果控制器”将更改内同- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller{ NSLog(@“controllerWillChangeContent”); //通过调用表示图的beginUpdates方法告知表更新即将发生 [self.tableView beginUpdates];}//- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id
★ 平板电脑的说明文
【ios 顶部tab(精选8篇)】相关文章:
平板电脑市场调查报告2023-02-23
查找我的iphone怎么用2023-04-04
如何给记事本添加下划线功能电脑新手办公/数码2023-03-24
电气工程师助理个人简历2022-07-21
Cisco路由配置语句Windows系统2023-05-20
go语言实现的memcache协议服务的方法2022-05-07
电脑市场调查报告范文2023-02-19
Alibaba国际站首页改版小结 交互设计2023-07-25
内存常见问题解决方法2023-07-28
Android平板电脑CPU超频技巧2022-06-29