iOS开发UI篇—九宫格坐标计算

一、要求

完成下面的布局



二、分析

寻找左边的规律,每一个uiview的x坐标和y坐标。


三、实现思路

(1)明确每一块用得是什么view

(2)明确每个view之间的父子关系,每个视图都只有一个父视图,拥有很多的子视图。

(3)可以先尝试逐个的添加格子,最后考虑使用for循环,完成所有uiview的创建

(4)加载app数据,根据数据长度创建对应个数的格子

(5)添加格子内部的子控件

(6)给内部的子控件装配数据

四、代码示例

//
// YYViewController.m
// 九宫格练习
//
// Created by 孔医己 on 14-5-22.
// Copyright (c) 2014年 itcast. All rights reserved.
//

#import "YYViewController.h"

@interface YYViewController ()
@property(nonatomic,strong)NSArray *apps;
@end

@implementation YYViewController

//1.加载数据
- (NSArray *)apps
{
 if (!_apps) {
 NSString *path=[[NSBundle mainBundle]pathForResource:@"app.plist" ofType:nil];
 _apps=[NSArray arrayWithContentsOfFile:path];
 }
 return _apps;
}

- (void)viewDidLoad
{
 [super viewDidLoad];
 NSLog(@"%d",self.apps.count);

 //2.完成布局设计

 //三列
 int totalloc=3;
 CGFloat appvieww=80;
 CGFloat appviewh=90;

 CGFloat margin=(self.view.frame.size.width-totalloc*appvieww)/(totalloc+1);
 int count=self.apps.count;
 for (int i=0; i<count; i++) {
 int row=i/totalloc;//行号
 //1/3=0,2/3=0,3/3=1;
 int loc=i%totalloc;//列号

 CGFloat appviewx=margin+(margin+appvieww)*loc;
 CGFloat appviewy=margin+(margin+appviewh)*row;

 //创建uiview控件
 UIView *appview=[[UIView alloc]initWithFrame:CGRectMake(appviewx, appviewy, appvieww, appviewh)];
 //[appview setBackgroundColor:[UIColor purpleColor]];
 [self.view addSubview:appview];

 //创建uiview控件中的子视图
 UIImageView *appimageview=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 80, 50)];
 UIImage *appimage=[UIImage imageNamed:self.apps[i][@"icon"]];
 appimageview.image=appimage;
 [appimageview setContentMode:UIViewContentModeScaleAspectFit];
 // NSLog(@"%@",self.apps[i][@"icon"]);
 [appview addSubview:appimageview];

 //创建文本标签
 UILabel *applable=[[UILabel alloc]initWithFrame:CGRectMake(0, 50, 80, 20)];
 [applable setText:self.apps[i][@"name"]];
 [applable setTextAlignment:NSTextAlignmentCenter];
 [applable setFont:[UIFont systemFontOfSize:12.0]];
 [appview addSubview:applable];

 //创建按钮
 UIButton *appbtn=[UIButton buttonWithType:UIButtonTypeCustom];
 appbtn.frame= CGRectMake(10, 70, 60, 20);
 [appbtn setBackgroundImage:[UIImage imageNamed:@"buttongreen"] forState:UIControlStateNormal];
 [appbtn setBackgroundImage:[UIImage imageNamed:@"buttongreen_highlighted"] forState:UIControlStateHighlighted];
 [appbtn setTitle:@"下载" forState:UIControlStateNormal];
 appbtn.titleLabel.font=[UIFont systemFontOfSize:12.0];
 [appview addSubview:appbtn];

 [appbtn addTarget:self action:@selector(click) forControlEvents:UIControlEventTouchUpInside];
 }

}

-(void)click
{
 //动画标签
 UILabel *animalab=[[UILabel alloc]initWithFrame:CGRectMake(self.view.center.x-100, self.view.center.y+20, 200, 40)];
 [animalab setText:@"下载成功"];
 animalab.font=[UIFont systemFontOfSize:12.0];
 [animalab setBackgroundColor:[UIColor brownColor]];
 [animalab setAlpha:0];
 [self.view addSubview:animalab];

// [UIView beginAnimations:Nil context:Nil];
// [animalab setAlpha:1];
// [UIView setAnimationDuration:4.0];
// [UIView commitAnimations];

 //执行完之后,还得把这给删除了,推荐使用block动画

 [UIView animateWithDuration:4.0 animations:^{
 [animalab setAlpha:1];
 } completion:^(BOOL finished) {
 //[self.view re];
 }];
}

- (void)didReceiveMemoryWarning
{
 [super didReceiveMemoryWarning];
}

@end

执行效果:

时间: 2024-09-26 13:23:21

iOS开发UI篇—九宫格坐标计算的相关文章

iOS开发UI篇—popoverController使用注意

iOS开发UI篇-popoverController使用注意 iOS开发UI篇-popoverController使用注意 一.设置尺寸 提示:不建议,像下面这样吧popover的宽度和高度写死. 1 //1.新建一个内容控制器 2 YYMenuViewController *menuVc=[[YYMenuViewController alloc]init]; 3 4 //2.新建一个popoverController,并设置其内容控制器 5 self.popover=[[UIPopoverCo

iOS开发UI篇—UITableviewcell的性能优化和缓存机制

iOS开发UI篇-UITableviewcell的性能问题 一.UITableviewcell的一些介绍 UITableView的每一行都是一个UITableViewCell,通过dataSource的 tableView:cellForRowAtIndexPath:方法来初始化每⼀行 UITableViewCell内部有个默认的子视图:contentView,contentView是UITableViewCell所显示内容的父视图,可显示一些辅助指示视图 辅助指示视图的作⽤是显示一个表示动作的

详解iOS应用UI开发中的九宫格坐标计算与字典转换模型_IOS

九宫格坐标计算 一.要求 完成下面的布局 二.分析 寻找左边的规律,每一个uiview的x坐标和y坐标. 三.实现思路 (1)明确每一块用得是什么view (2)明确每个view之间的父子关系,每个视图都只有一个父视图,拥有很多的子视图. (3)可以先尝试逐个的添加格子,最后考虑使用for循环,完成所有uiview的创建 (4)加载app数据,根据数据长度创建对应个数的格子 (5)添加格子内部的子控件 (6)给内部的子控件装配数据 四.代码示例 复制代码 代码如下: // //  YYViewC

iOS开发UI篇:APP主流UI框架结构

一.简单示例 说明:使用APP主流UI框架结构完成简单的界面搭建 搭建页面效果: 开发UI篇:APP主流UI框架结构-"> 查看本栏目更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/OS/extra/

iOS开发UI篇—xib的简单使用实例_IOS

这个博客申请了有一段时间了,觉得好像是该写点什么了.这篇文章主要是关于一些xib的简单的用法,希望可以帮助到刚刚使用xib的新手们. 什么是xib? xib能做什么? 用来描述软件界面的文件. 如果没有xib,所有的界面都需要通过代码来手动创建. 有了xib以后,可以在xib中进行可视化开发,然后加载xib文件的时候,系统自动生成对应的代码来创建界面. 与xib类似的还有storyboard文件.xib和storyboard的比较,一个轻量级一个重量级. 共同点: 都用来描述软件界面.都用Int

iOS开发UI篇—iPad和iPhone开发的比较

一.iPad简介 1.什么是iPad 一款苹果公司于2010年发布的平板电脑 定位介于苹果的智能手机iPhone和笔记本电脑产品之间 跟iPhone一样,搭载的是iOS操作系统 2.iPad的市场情况 截止至2013年10月23日,iPad已经累计销售1.7亿台 在平板市场的占有率高达81% 二.关于iphone和iPad 说明:iPhone是手机,iPad.iPad Mini是平板电脑 iPhone和iPad开发的区别 屏幕的尺寸 \分辨率 UI元素的排布 \设计 键盘 API 屏幕方向的支持

iOS开发UI篇—Quartz2D简单介绍

一.什么是Quartz2D Quartz 2D是⼀个二维绘图引擎,同时支持iOS和Mac系统 Quartz 2D能完成的工作: 绘制图形 : 线条\三角形\矩形\圆\弧等 绘制文字 绘制\生成图片(图像) 读取\生成PDF 截图\裁剪图片 自定义UI控件 二.Quartz2D在iOS开发中的价值 为了便于搭建美观的UI界面,iOS提供了UIKit框架,⾥⾯有各种各样的UI控件 UILabel:显⽰文字 UIImageView:显示图片 UIButton:同时显示图片和⽂字(能点击) 利⽤UIKi

iOS开发UI篇—常见的项目文件介绍

一.项目文件结构示意图 二.文件介绍 1.products文件夹:主要用于mac电脑开发的可执行文件,ios开发用不到这个文件 2.frameworks文件夹主要用来放依赖的框架 3.test文件夹是用来做单元测试的 4.常用的文件夹(项目名称文件夹) (1)XXXinfo.plist文件(在该项目中为 01-常见文件-Info.plist) 1)简单说明 是配置文件,该文件对工程做一些运行期的配置,非常重要,不能删除. 在旧版本xcode创建的工程中,这个配置文件的名字就叫做info.plis

iOS开发UI篇—简单的浏览器查看程序

一.程序实现要求 1.要求 2. 界面分析 (1) 需要读取或修改属性的控件需要设置属性 序号标签 图片 图片描述 左边按钮 右边按钮 (2) 需要监听响应事件的对象,需要添加监听方法 左边按钮 右边按钮 二.实现基本功能的程序 // // YYViewController.m // 03-图片浏览器初步 // // Created by apple on 14-5-21. // Copyright (c) 2014年 itcase. All rights reserved. // #impor