#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
UIView * v = [[UIView alloc] initWithFrame:CGRect...
分类:
其他好文 时间:
2015-08-17 21:54:16
阅读次数:
6214
在他们的定义UItableView什么时候,选择当style至Group时间,后常透明切割线依然,去除。只有再次刷新了BackgroundView它可以覆盖原来的 //取消切割线 UIView *view= [ [ [ UIViewalloc ] init ] autorelease]; [c...
分类:
移动开发 时间:
2015-08-17 15:24:53
阅读次数:
157
字符串搜索主要用于UITableView的搜索功能的筛选,过滤,查询下面是一些流行的搜索查询方法一.遍历搜索for循环根据要求:精确搜索(判读字符串相等) 模糊搜索(字符串包含)二.谓词搜索(用NSPredicate类写的一些搜索方法,比for循环快并且性能消耗很低。)OC学习篇之---谓词(NSP...
分类:
移动开发 时间:
2015-08-17 13:46:55
阅读次数:
138
在ViewController.m文件中:
//
// ViewController.m
// 002使用UITABLE
//
// Created by 王丰 on 8/16/15.
// Copyright (c) 2015 smartcost. All rights reserved.
//
#import "ViewController.h"
@interface ViewC...
分类:
移动开发 时间:
2015-08-17 12:07:45
阅读次数:
129
#import "RootViewController.h"#define width [UIScreen mainScreen].bounds.size.width#define height [UIScreen mainScreen].bounds.size.height#define topH...
分类:
其他好文 时间:
2015-08-17 11:58:23
阅读次数:
132
一;执行过程1,tableView进入编辑状态 用户点击一个按钮,让程序进入编辑状态, self.tableView.editing=YES;2,询问tableView的cell能否编辑 tableView询问dataSource代理,让它执行一个代理方法询问每一行的编辑状态 即-(BOOL...
分类:
其他好文 时间:
2015-08-16 09:21:34
阅读次数:
145
使用UICollectionView实现新特性界面关于CollectionView是一个很好用的控件,或许你还没有接触过,但是你肯定接触过UITableView,它可以实现UITableView实现不了的功能,知识UITableView使用的地方不不是很难,而CollectionView如果你只是简...
分类:
移动开发 时间:
2015-08-16 00:38:12
阅读次数:
774
一:UITableView的几个重要属性 1,style样式, 在初始化时设置 - (instancetype)initWithFrame:(CGRect)frame style:(UITableViewStyle)style; 其中UITableViewStyle枚举类型为: ...
分类:
其他好文 时间:
2015-08-15 22:44:07
阅读次数:
276
效果展示进入构建结构首先我们新建一个工程接下来我们拖进来一个Table View Controller,将Storyboard Entry Point指向我们的Table View Controller。原来的ViewController就可以删除了。效果如图所示选中Table View Controller,点击上面菜单栏中Editor->Embed in->Navigation Controll...
分类:
移动开发 时间:
2015-08-15 16:33:18
阅读次数:
231
系统自定义的点击背景有时间觉得效果不好想换个- (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; if (selected)...
分类:
其他好文 时间:
2015-08-15 11:41:29
阅读次数:
116