本文主要是介绍ios实现简单的查看器,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
用纯代码开发的过程
**
1.了解界面是由什么构成的
2.用代码创建界面
3.编写代码
首先就是搭建界面了
//界面加载完时调用
- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view, typically from a nib.//1.序号_noLable=[[UILabel alloc]initWithFrame:CGRectMake(0, 20.0, self.view.bounds.size.width, 40.0)];// _noLable.text=@"1/5";[self.view addSubview:_noLable];// 设置lable文字的位置_noLable.textAlignment=NSTextAlignmentCenter;//2.图片CGFloat imageW=200.0;CGFloat imageH=200.0;CGFloat imageX=(self.view.bounds.size.width-imageW)*0.5;CGFloat imageY=CGRectGetMaxY(self.noLable.frame)+20.0;_iconView=[[UIImageView alloc]initWithFrame:CGRectMake(imageX, imageY, imageW,imageH)];//[_iconView setBackgroundColor:[UIColor purpleColor]];_iconView.image=[UIImage imageNamed:@"biaoqingdi"];[self.view addSubview:_iconView];//3.设置图片介绍CGFloat descY=CGRectGetMaxY(_iconView.frame);_descLable =[[UILabel alloc]initWithFrame:CGRectMake(0.0, descY, self.view.bounds.size.width, 40.0)];// _descLable.text=@"这是什么表情啊?";_descLable.textAlignment&#
这篇关于ios实现简单的查看器的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!