博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简洁的ios小界面
阅读量:5097 次
发布时间:2019-06-13

本文共 4066 字,大约阅读时间需要 13 分钟。

下午写写了个小东西小界面

有须要的能够直接拿过来用 ,简洁,挺好看,自我感觉;

                 

写界面事实上就是自上而下的在view加空间,注意一下位置即可了

- (id)initWithFrame:(CGRect)frame{    self = [super initWithFrame:frame];    if (self) {        CGRect screenSize = [[UIScreen mainScreen]bounds];                //无货物信息图片        UIImageView *image = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 160, 100)];        image.center = CGPointMake(screenSize.size.width/2,screenSize.size.height/2-15-55);        image.image = [UIImage imageNamed:@"nocargo.jpg"];        image.backgroundColor = [UIColor orangeColor];        [self addSubview:image];        //你还没有收货地址label        UILabel *noLabel = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 160, 30)];        noLabel.center =CGPointMake(screenSize.size.width/2,screenSize.size.height/2 );        noLabel.text = @"您还没有收获地址";        noLabel.textAlignment = NSTextAlignmentCenter;        noLabel.font = [UIFont fontWithName:@"Helvetica" size:19];        [self addSubview:noLabel];                //请加入新地址label        UILabel *addLabel = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 150, 30)];        addLabel.center =CGPointMake(screenSize.size.width/2,screenSize.size.height/2+30);        addLabel.text = @"请加入新地址";        addLabel.textAlignment = NSTextAlignmentCenter;        addLabel.font = [UIFont fontWithName:@"Helvetica" size:15];        [self addSubview:addLabel];                //加入新地址button设置        addAddressBtn = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 150, 30)];        addAddressBtn.center = CGPointMake(screenSize.size.width/2,screenSize.size.height-40 );        [addAddressBtn setTitle:@"加入新地址" forState:UIControlStateNormal];        [addAddressBtn addTarget:self action:@selector(addAddressBtnClick) forControlEvents:UIControlEventTouchDown];        addAddressBtn.layer.borderWidth = 1;        addAddressBtn.layer.cornerRadius = 5;        addAddressBtn.layer.borderColor = [UIColor redColor].CGColor;        addAddressBtn.titleLabel.font = [UIFont fontWithName:@"Helvetica" size:18];        addAddressBtn.titleLabel.textColor = [UIColor redColor];        [self addSubview:addAddressBtn];                self.backgroundColor =  [UIColor colorWithRed:238/255.0 green:238/255.0 blue:238/255.0 alpha:1]; ;    }    return self;}
以上就是第一个页面的全部内容;

我们来看一下第二张图吧

xib 中加入控件实现这个效果三个都是label。设置一下字体什么的即可 最后加一个小图片 箭头

注意在地址中我们用到了富文本label 将【默认】设置为红色。看第二幅图。

NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Using NSAttributed String"];[str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(0,5)];[str addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(6,12)];[str addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(19,6)];[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Arial-BoldItalicMT" size:30.0] range:NSMakeRange(0, 5)];[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"HelveticaNeue-Bold" size:30.0] range:NSMakeRange(6, 12)];[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Courier-BoldOblique" size:30.0] range:NSMakeRange(19, 6)];attrLabel.attributedText = str;
本段代码来自http://www.cnblogs.com/taintain1984/p/3550525.html;

以下是在设置tablecell的代码。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    static NSString *cellIdentifier = @"cellIdentifier";    NSDictionary *dictionary = [tableArray objectAtIndex:indexPath.row];    TableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];    if(cell==nil)    {        cell =  [[NSBundle mainBundle] loadNibNamed:@"TableViewCell" owner:nil options:nil][0];    }    cell = [cell setCelldictionary:dictionary];    return cell;}

最后有一个地方就是我们写完tableview的时候是第三幅图的样子,后面没有内容了可是还是有表格线,那我们怎么办呢。

仅仅要加上一句话就够了

self.tableFooterView = [[UIView alloc]init];

self 是tableview。

其它的就没什么了,主要是为了帮忙,写了两个界面。记录一下不熟练的地方。

界面代码下载地址:http://download.csdn.net/detail/u010123208/8013673

posted on
2017-05-16 09:27 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/mthoutai/p/6859797.html

你可能感兴趣的文章
python3 生成器与迭代器
查看>>
CPU,寄存器,一缓二缓.... RAM ROM 外部存储器等简介
查看>>
git .gitignore 文件不起作用
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
【题解】[P4178 Tree]
查看>>
cer证书签名验证
查看>>
【深度学习】caffe 中的一些参数介绍
查看>>
QML学习笔记之一
查看>>
App右上角数字
查看>>
小算法
查看>>
新作《ASP.NET MVC 5框架揭秘》正式出版
查看>>
WPF中实现多选ComboBox控件
查看>>
读构建之法第四章第十七章有感
查看>>
Windows Phone开发(4):框架和页 转:http://blog.csdn.net/tcjiaan/article/details/7263146
查看>>
python asyncio 异步实现mongodb数据转xls文件
查看>>
TestNG入门
查看>>
【ul开发攻略】HTML5/CSS3菜单代码 阴影+发光+圆角
查看>>
IOS-图片操作集合
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
jquery实现限制textarea输入字数
查看>>