摘要:
思路:将headerView作为分区视图,通过headerView中的点击事件改变数据源的,来该变这个分区中的cell的个数,从而实现了cell的折叠效果,部分代码如下- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSect... 阅读全文
摘要:
首先最令人头疼的问题 cell随着label的自动行高问题 下面几行代码解决了,,,, self.tableView.estimatedRowHeight = 120; 预设行高 _label.numberOfLines = 0; self.tableView.rowHeight = UITable 阅读全文
摘要:
常见设置如下#import "TRTabBarController.h"@interface TRTabBarController ()@end@implementation TRTabBarController //设置选中后的背景图 [self.tabBar setSelectionIndic... 阅读全文
摘要:
MJExtension长话短说下面我们通过一个列子来看下怎么使用1、 先把框架拉进去你的项目2、 首先我这次用到的json最外层是一个字典,根据数据的模型我们可以把这个归类为字典中有数组,数组中还有其他 针对于这种情况 我需要建立两个数据模型 一个是要获取其中的数组 另一个数组中的的City元素 代... 阅读全文
摘要:
一、数据来源1.来源于mainBundle2.来源于服务器二、解析步骤`1.数据来源于mainBundle//读取数据 NSString *jsonPath = [[NSBundle mainBundle] pathForResource:@"test.json" ofType:nil];解析数据(... 阅读全文
摘要:
@font-face { font-family: "Wingdings"; }@font-face { font-family: "Cambria Math"; }@font-face { font-family: "Hannotate SC Bold"; }@font-face { font-f... 阅读全文
摘要:
//// ViewController.m// Demo_1 MKMapView//// Created by tareba on 15/12/16.// Copyright © 2015年 tanada. All rights reserved.//#import "ViewController.... 阅读全文
摘要:
将汉字转换为没有音调没有空格的拼音//汉字转换为没有声调的没有空格的拼音- (NSString *)transformToPinYin:(NSString *)wordStr {首先转换的字符串必须是可变的字符串NSString *wordStr=@”郑州”; NSMutableString*mut... 阅读全文