上一页 1 ··· 9 10 11 12 13 14 下一页
摘要: 思路:将headerView作为分区视图,通过headerView中的点击事件改变数据源的,来该变这个分区中的cell的个数,从而实现了cell的折叠效果,部分代码如下- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSect... 阅读全文
posted @ 2015-12-30 13:07 严_青 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 首先最令人头疼的问题 cell随着label的自动行高问题 下面几行代码解决了,,,, self.tableView.estimatedRowHeight = 120; 预设行高 _label.numberOfLines = 0; self.tableView.rowHeight = UITable 阅读全文
posted @ 2015-12-25 20:22 严_青 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 常见设置如下#import "TRTabBarController.h"@interface TRTabBarController ()@end@implementation TRTabBarController //设置选中后的背景图 [self.tabBar setSelectionIndic... 阅读全文
posted @ 2015-12-20 16:21 严_青 阅读(276) 评论(0) 推荐(0) 编辑
摘要: MJExtension长话短说下面我们通过一个列子来看下怎么使用1、 先把框架拉进去你的项目2、 首先我这次用到的json最外层是一个字典,根据数据的模型我们可以把这个归类为字典中有数组,数组中还有其他 针对于这种情况 我需要建立两个数据模型 一个是要获取其中的数组 另一个数组中的的City元素 代... 阅读全文
posted @ 2015-12-18 23:00 严_青 阅读(1634) 评论(0) 推荐(0) 编辑
摘要: 一、数据来源1.来源于mainBundle2.来源于服务器二、解析步骤`1.数据来源于mainBundle//读取数据 NSString *jsonPath = [[NSBundle mainBundle] pathForResource:@"test.json" ofType:nil];解析数据(... 阅读全文
posted @ 2015-12-17 23:34 严_青 阅读(293) 评论(0) 推荐(0) 编辑
摘要: @font-face { font-family: "Wingdings"; }@font-face { font-family: "Cambria Math"; }@font-face { font-family: "Hannotate SC Bold"; }@font-face { font-f... 阅读全文
posted @ 2015-12-17 13:55 严_青 阅读(205) 评论(0) 推荐(0) 编辑
摘要: //// ViewController.m// Demo_1 MKMapView//// Created by tareba on 15/12/16.// Copyright © 2015年 tanada. All rights reserved.//#import "ViewController.... 阅读全文
posted @ 2015-12-16 20:24 严_青 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 将汉字转换为没有音调没有空格的拼音//汉字转换为没有声调的没有空格的拼音- (NSString *)transformToPinYin:(NSString *)wordStr {首先转换的字符串必须是可变的字符串NSString *wordStr=@”郑州”; NSMutableString*mut... 阅读全文
posted @ 2015-12-15 19:58 严_青 阅读(262) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_9e8867eb01013knc.html 这家伙写的不错本人也参考了这篇博客,希望原文博主可以谅解新手的无奈举措首相要提到的类是 CLLocationManager 这个类 英文描述如下The CLLocationManager cla... 阅读全文
posted @ 2015-12-14 22:09 严_青 阅读(350) 评论(0) 推荐(0) 编辑
摘要: tableView 的tips 阅读全文
posted @ 2015-12-14 20:50 严_青 阅读(155) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 下一页