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

一、简单介绍

xib和storyboard的比较,一个轻量级一个重量级。

共同点:

都用来描述软件界面

都用Interface Builder工具来编辑

不同点:

Xib是轻量级的,用来描述局部的UI界面

Storyboard是重量级的,用来描述整个软件的多个界面,并且能展示多个界面之间的跳转关系

二、xib的简单使用

1.建立xib文件


建立的xib文件命名为appxib.xib


2.对xib进行设置

  根据程序的需要,这里把view调整为自由布局


建立view模型(设置长宽等参数)


调整布局和内部的控件



完成后的单个view


3.使用xib文件的代码示例

YYViewController.m文件代码如下:

//
// YYViewController.m
// 10-xib文件的使用
//
// Created by apple on 14-5-24.
// Copyright (c) 2014年 itcase. All rights reserved.
//

#import "YYViewController.h"
#import "YYapp.h"

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

@implementation YYViewController

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

 //字典转模型
 NSMutableArray *arrayM=[NSMutableArray array ];
 for (NSDictionary *dict in temparray) {
 [arrayM addObject:[YYapp appWithDict:dict]];
 }
 _app=arrayM;
 }
 return _app;
}

//创建界面原型
- (void)viewDidLoad
{
 [super viewDidLoad];
 NSLog(@"%d",self.app.count);

 //九宫格布局
 int totalloc=3;
 CGFloat appviewW=80;
 CGFloat appviewH=90;
 CGFloat margin=(self.view.frame.size.width-totalloc*appviewW)/(totalloc+1);

 int count=self.app.count;
 for (int i=0; i<count; i++) {

 int row=i/totalloc;
 int loc=i%totalloc;
 CGFloat appviewX=margin + (margin +appviewW)*loc;
 CGFloat appviewY=margin + (margin +appviewH)*row;
 YYapp *app=self.app[i];

 //拿出xib视图
 NSArray *apparray= [[NSBundle mainBundle]loadNibNamed:@"appxib" owner:nil options:nil];
 UIView *appview=[apparray firstObject];
 //加载视图
 appview.frame=CGRectMake(appviewX, appviewY, appviewW, appviewH);

 UIImageView *appviewImg=(UIImageView *)[appview viewWithTag:1];
 appviewImg.image=app.image;

 UILabel *appviewlab=(UILabel *)[appview viewWithTag:2];
 appviewlab.text=app.name;

 UIButton *appviewbtn=(UIButton *)[appview viewWithTag:3];
 [appviewbtn addTarget:self action:@selector(appviewbtnClick:) forControlEvents:UIControlEventTouchUpInside];
 appviewbtn.tag=i;

 [self.view addSubview:appview];
 }
}

/**按钮的点击事件*/
-(void)appviewbtnClick:(UIButton *)btn
{
 YYapp *apps=self.app[btn.tag];
 UILabel *showlab=[[UILabel alloc]initWithFrame:CGRectMake(60, 450, 200, 20)];
 [showlab setText:[NSString stringWithFormat: @"%@下载成功",apps.name]];
 [showlab setBackgroundColor:[UIColor lightGrayColor]];
 [self.view addSubview:showlab];
 showlab.alpha=1.0;

 //简单的动画效果
 [UIView animateWithDuration:2.0 animations:^{
 showlab.alpha=0;
 } completion:^(BOOL finished) {
 [showlab removeFromSuperview];
 }];
}

@end

运行效果:


三、对xib进行连线示例

1.连线示例

新建一个xib对应的视图类,继承自Uiview




在xib界面右上角与新建的视图类进行关联


把xib和视图类进行连线


注意:在使用中把weak改成为强引用。否则...

2.连线后的代码示例

YYViewController.m文件代码如下:

//
// YYViewController.m
// 10-xib文件的使用
//
// Created by apple on 14-5-24.
// Copyright (c) 2014年 itcase. All rights reserved.
//

#import "YYViewController.h"
#import "YYapp.h"
#import "YYappview.h"

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

@implementation YYViewController

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

 //字典转模型
 NSMutableArray *arrayM=[NSMutableArray array ];
 for (NSDictionary *dict in temparray) {
 [arrayM addObject:[YYapp appWithDict:dict]];
 }
 _app=arrayM;
 }
 return _app;
}

//创建界面原型
- (void)viewDidLoad
{
 [super viewDidLoad];
 NSLog(@"%d",self.app.count);

 //九宫格布局
 int totalloc=3;
 CGFloat appviewW=80;
 CGFloat appviewH=90;
 CGFloat margin=(self.view.frame.size.width-totalloc*appviewW)/(totalloc+1);

 int count=self.app.count;
 for (int i=0; i<count; i++) {

 int row=i/totalloc;
 int loc=i%totalloc;
 CGFloat appviewX=margin + (margin +appviewW)*loc;
 CGFloat appviewY=margin + (margin +appviewH)*row;
 YYapp *app=self.app[i];

 //拿出xib视图
 NSArray *apparray= [[NSBundle mainBundle]loadNibNamed:@"appxib" owner:nil options:nil];

 //注意这里的类型名!
 //UIView *appview=[apparray firstObject];
 YYappview *appview=[apparray firstObject];

 //加载视图
 appview.frame=CGRectMake(appviewX, appviewY, appviewW, appviewH);
 [self.view addSubview:appview];

 appview.appimg.image=app.image;
 appview.applab.text=app.name;
 appview.appbtn.tag=i;

 [ appview.appbtn addTarget:self action:@selector(appviewbtnClick:) forControlEvents:UIControlEventTouchUpInside];

 }
}

/**按钮的点击事件*/
-(void)appviewbtnClick:(UIButton *)btn
{
 YYapp *apps=self.app[btn.tag];
 UILabel *showlab=[[UILabel alloc]initWithFrame:CGRectMake(60, 450, 200, 20)];
 [showlab setText:[NSString stringWithFormat: @"%@下载成功",apps.name]];
 [showlab setBackgroundColor:[UIColor lightGrayColor]];
 [self.view addSubview:showlab];
 showlab.alpha=1.0;

 //简单的动画效果
 [UIView animateWithDuration:2.0 animations:^{
 showlab.alpha=0;
 } completion:^(BOOL finished) {
 [showlab removeFromSuperview];
 }];
}

@end

YYappview.h文件代码(已经连线)

#import <UIKit/UIKit.h>

@interface YYappview : UIView
@property (strong, nonatomic) IBOutlet UIImageView *appimg;
@property (strong, nonatomic) IBOutlet UILabel *applab;
@property (strong, nonatomic) IBOutlet UIButton *appbtn;
@end
时间: 2024-11-08 19:28:39

iOS开发UI篇—xib的简单使用的相关文章

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

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

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篇:APP主流UI框架结构

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

iOS开发UI篇—Quartz2D简单介绍

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

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篇—常见的项目文件介绍

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

iOS开发UI篇—使用xib自定义UItableviewcell实现一个简单的团购应用界面布局

一.项目文件结构和plist文件 二.实现效果 三.代码示例 1.没有使用配套的类,而是直接使用xib文件控件tag值操作 数据模型部分: YYtg.h文件 1 // 2 // YYtg.h 3 // 01-团购数据显示(没有配套的类) 4 // 5 // Created by apple on 14-5-29. 6 // Copyright (c) 2014年 itcase. All rights reserved. 7 // 8 9 #import <Foundation/Foundatio

iOS开发UI篇—UIWindow简单介绍

一.简单介绍 UIWindow是一种特殊的UIView,通常在一个app中只会有一个UIWindow iOS程序启动完毕后,创建的第一个视图控件就是UIWindow,接着创建控制器的view,最后将控制器的view添加到UIWindow上,于是控制器的view就显示在屏幕上了 一个iOS程序之所以能显示到屏幕上,完全是因为它有UIWindow.也就说,没有UIWindow,就看不见任何UI界面 补充:UIWindow是创建的第一个视图控件(创建的第一个对象是UIapplication)如下图: