A.每条微博的底部工具条
1.需求
  • 每条微博底部都有一个工具条
  • 显示3个按钮:评论、转发、赞
  • 按钮间用分割线隔开
  • 有评论数、转发数、赞数的时候显示相应数据,没有则显示文本
 
 
2.思路
(略)
 
3.实现
 
(1)微博数据模型中已经带有了相应数据字段
 //  HVWStatus.h
/** int 转发数 */
@property(nonatomic, assign) int reposts_count; /** int 评论数 */
@property(nonatomic, assign) int comments_count; /** int 表态数 */
@property(nonatomic, assign) int attitudes_count;
 
(2)直接在toolbar view中,在设置status数据的时候处理
 //
// HVWStatusToolbar.m
// HVWWeibo
//
// Created by hellovoidworld on 15/2/12.
// Copyright (c) 2015年 hellovoidworld. All rights reserved.
// #import "HVWStatusToolbar.h" @interface HVWStatusToolbar() /** 按钮数组 */
@property(nonatomic, strong) NSMutableArray *buttons; /** 分割线数组 */
@property(nonatomic, strong) NSMutableArray *divides; /** 转发按钮 */
@property(nonatomic, strong) UIButton *repostButton; /** 评论按钮 */
@property(nonatomic, strong) UIButton *commentButton; /** 点赞按钮 */
@property(nonatomic, strong) UIButton *attitudeButton; @end @implementation HVWStatusToolbar - (NSMutableArray *)buttons {
if (nil == _buttons) {
_buttons = [NSMutableArray array];
}
return _buttons;
} - (NSMutableArray *)divides {
if (nil == _divides) {
_divides = [NSMutableArray array];
}
return _divides;
} /** 代码自定义初始化方法 */
- (instancetype)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame]; if (self) {
// 设置toolbar背景
self.image = [UIImage resizedImage:@"timeline_card_bottom_background"]; // 为了按钮能够点击,设置父控件可交互
self.userInteractionEnabled = YES; // 添加按钮
self.commentButton = [self setupButtonWithIcon:@"timeline_icon_comment" title:@"评论"];
self.repostButton = [self setupButtonWithIcon:@"timeline_icon_retweet" title:@"转发"];
self.attitudeButton = [self setupButtonWithIcon:@"timeline_icon_unlike" title:@"赞"]; // 添加分割线
[self setupDivides];
} return self;
} // 设置按钮
- (UIButton *) setupButtonWithIcon:(NSString *)icon title:(NSString *)title {
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
// 标题
[button setTitle:title forState:UIControlStateNormal];
// 图片
[button setImage:[UIImage imageWithNamed:icon] forState:UIControlStateNormal];
// 字体颜色
[button setTitleColor:[UIColor grayColor] forState:UIControlStateNormal];
// 字体大小
button.titleLabel.font = [UIFont systemFontOfSize:];
// 图标、文本之间间隙
[button setTitleEdgeInsets:UIEdgeInsetsMake(, , , )];
// 高亮背景
[button setBackgroundImage:[UIImage imageWithNamed:@"timeline_card_bottom_background_highlighted"] forState:UIControlStateHighlighted];
// 取消高亮图片调整效果
[button setAdjustsImageWhenHighlighted:NO]; // 加入到view中
[self addSubview:button];
[self.buttons addObject:button]; return button;
} // 设置分割线
- (void) setupDivides {
for (int i=; i<self.buttons.count; i++) {
UIImageView *divide = [[UIImageView alloc] init];
divide.image = [UIImage imageWithNamed:@"timeline_card_bottom_line"];
divide.contentMode = UIViewContentModeCenter; [self addSubview:divide];
[self.divides addObject:divide];
}
} /** 设置Frame模型 */
- (void)setToolbarFrame:(HVWStatusToolbarFrame *)toolbarFrame {
_toolbarFrame = toolbarFrame; // 设置自己的frame
self.frame = toolbarFrame.frame; // 配置toolbar按钮数据
[self setupToolBarButton];
} // 设置子控件frame
- (void)layoutSubviews {
[super layoutSubviews]; // 配置按钮frame
CGFloat buttonWidth = self.width / self.buttons.count;
CGFloat buttonHeight = self.height;
CGFloat buttonY = ;
for (int i=; i<self.buttons.count; i++) {
CGFloat buttonX = i * buttonWidth;
UIButton *button = self.buttons[i]; button.frame = CGRectMake(buttonX, buttonY, buttonWidth, buttonHeight);
} // 配置分割线frame
CGFloat divideWidth = ;
CGFloat divideHeight = self.height;
for (int i=; i<self.divides.count; i++) {
CGFloat divideX = (i + ) * buttonWidth;
UIImageView *imageView = self.divides[i];
imageView.size = CGSizeMake(divideWidth, divideHeight);
imageView.center = CGPointMake(divideX, self.height * 0.5);
}
} /** 设置toolbar按钮数据 */
- (void) setupToolBarButton {
HVWStatus *status = self.toolbarFrame.status; // 评论
[self setupButtonTitle:self.commentButton withOriginalTitle:@"评论" titleCount:status.comments_count]; // 转发
[self setupButtonTitle:self.repostButton withOriginalTitle:@"转发" titleCount:status.reposts_count]; // 点赞
[self setupButtonTitle:self.attitudeButton withOriginalTitle:@"赞" titleCount:status.attitudes_count];
} /** 设置按钮标题 */
- (void) setupButtonTitle:(UIButton *) button withOriginalTitle:(NSString *)buttonTitle titleCount:(int)titleCount {
// 当数量超过1万的时候,使用“万”作为单位
if (titleCount >= ) {
buttonTitle = [NSString stringWithFormat:@"%.1f万", (titleCount / 10000.0)];
buttonTitle = [buttonTitle stringByReplacingOccurrencesOfString:@".0" withString:@""]; // 去除".0"小数
} else if (titleCount) {
buttonTitle = [NSString stringWithFormat:@"%d", titleCount];
} [button setTitle:buttonTitle forState:UIControlStateNormal];
} @end
 

[iOS微博项目 - 4.5] - 每条微博的底部工具条的更多相关文章

  1. [iOS微博项目 - 3.0] - 手动刷新微博

    github: https://github.com/hellovoidworld/HVWWeibo   A.下拉刷新微博 1.需求 在“首页”界面,下拉到一定距离的时候刷新微博数据 刷新数据的时候使 ...

  2. [iOS微博项目 - 4.2] - 设置转发微博背景

    github: https://github.com/hellovoidworld/HVWWeibo A.转发微博部分的淡灰色背景 1.需求 转发微博部分需要设置背景色 使用图片作为背景   2.思路 ...

  3. [iOS微博项目 - 4.1] - cell的frame模型

    github: https://github.com/hellovoidworld/HVWWeibo A.cell的frame模型设计 1.需求 每个cell都有一个frame实例引用 frame模型 ...

  4. [ExtJS5学习笔记]第八节 Extjs5的Ext.toolbar.Toolbar工具条组件及其应用

    本文地址:http://blog.csdn.net/sushengmiyan/article/details/38515499 本文作者:sushengmiyan ------------------ ...

  5. 黄聪:自定义WordPress前台、后台顶部菜单栏管理工具条的技巧

    使用WordPress开发网站项目,很多时候都需要对进行后台定制,今天倡萌主要分享下自定义顶部管理工具条的使用技巧. 注:如无特殊说明,请将下面的代码添加到主题的 functions.php  或者插 ...

  6. 黄聪:自定义WordPress顶部管理工具条的技巧(转)

    使用WordPress开发网站项目,很多时候都需要对进行后台定制,今天倡萌主要分享下自定义顶部管理工具条的使用技巧. 注:如无特殊说明,请将下面的代码添加到主题的 functions.php  或者插 ...

  7. 积累的VC编程小技巧之工具条和状态条

    1.工具条和状态条中控件的添加: 方法⑴.只能在ToolBar里创建控件:首先,在ToolBar中创建一个Button,其ID为ID_TOOL_COMBO(我们要将创建的控件放在该Button的位置上 ...

  8. SWIFT显示底部的工具条

    有以下页面显示我的讯息,用户可以点击右上角的编辑按钮进入删除状态.点击编辑按钮后,按钮文字改为“取消”,左上角的按钮变为“全选”,同时显示底部工具条带有“删除”按钮 实现起来挺简单的,在正常状态下点击 ...

  9. iOS开发小技巧--微博项目中的键盘工具条

    微博项目中的键盘工具条 项目中的键盘工具条不能使用inputAccessoryView,因为inputAccessoryView不能实现键盘隐藏的时候,工具条还显示在眼前,如图: 所以,果断决定将工具 ...

随机推荐

  1. 重装windows导致grub损坏

    本人一块磁盘第7分区装linux,第一分区先装xp,后重装为windows8.1后,发现grub引导没了,直接进了windows,解决办法如下: 1.LiveCD进入系统,打开shell 2.输入sh ...

  2. Bootstrap的js插件之折叠(collapse)

    data-toggle="collapse"--指明该元素具有折叠功能: data-target--设置元素打开折叠后指向的元素链接. .collapse--用来设置元素为折叠内容 ...

  3. CA证书的信认

    为什么不同的品牌证书,价钱不一样: 衡量证书一般是看通用型,就是大家认不认你,或者说,你买的证书的根证书有没有被设备内置,内置了,你就是可信的, 没内置,就没法用.

  4. nyoj983 首尾相连数组的最大子数组和

    首尾相连数组的最大子数组和 时间限制:1000 ms  |  内存限制:65535 KB 难度:4 描述 给定一个由N个整数元素组成的数组arr,数组中有正数也有负数,这个数组不是一般的数组,其首尾是 ...

  5. 如何重设 MySQL 的 root 密码

    MySQL下创建新用户.新数据库.设定访问权限控制都需要用到root密码.万一把root密码忘了,该怎么办? 幸运地是,重设密码很容易. 安全模式重置法 基本的思路是,以安全模式启动mysql,这样不 ...

  6. Shell脚本中调用另外一个脚本的方法

    (转载): 在Linux平台上开发,经常会在console(控制台)上执行另外一个脚本文件,经常用的方法有:./my.sh 或 source my.sh 或 . my.sh:这三种方法有什么不同呢?我 ...

  7. DRBD安装配置、工作原理及故障恢复

    一.DRBD简介 DRBD的全称为:Distributed ReplicatedBlock Device(DRBD)分布式块设备复制,DRBD是由内核模块和相关脚本而构成,用以构建高可用性的集群.其实 ...

  8. C#读取EXECL关键代码

    string strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + filename + ";Extend ...

  9. php -- 魔术方法 之 对象输出 : __toString()

    对象输出:__toString() 当一个对象被当做字符串进行输出时(echo,print),会调用__toString()方法 <?php //输出对象 class Person{ //属性 ...

  10. 【BZOJ】1660: [Usaco2006 Nov]Bad Hair Day 乱发节(单调栈)

    http://www.lydsy.com/JudgeOnline/problem.php?id=1660 单调栈裸题..累计比每一个点高的个数即可. #include <cstdio> # ...