YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!
首页
关于
关键字
TableView
的文章
Swift如何写通知代码?如何避免写出丑陋的通知代码?Swift通知代码
由 YIem 撰写于
2019-04-30
浏览:7054 评论:0
Swift如何写通知代码?如何避免写出丑陋的通知代码?Swift通知代码本文为转载文章:具体转载信息请看文章最后大概从入门 iOS 的青铜段位我们就开始使用 NotificationCenter 实现跨层一对多的消息传递,具体实现代码大概如下://发送通知 let info = ["newsId": 12345,"co[...]
#解决:iOS TableView懒加载创建,不执行cellForRowAtIndexPath方法的原因以及解决方法
由 YIem 撰写于
2018-11-22
浏览:7497 评论:0
解决:TableView懒加载创建,不执行cellForRowAtIndexPath方法的原因以及解决方法TableView不执行cellForRowAtIndexPath方法的原因--> 问题描述在以懒加载创建TableView之后发现代码根本执行不到cellForRowAtIndexPath方法中,或者说是直接跳过,但是会执行number[...]
2017-07-18-MAC-Chrome-Backup
由 YIem 撰写于
2017-07-18
浏览:9771 评论:0
https://blog.ni-co.moe/ | 矢澤にこhttp://www.jianshu.com/p/515602a329c7 | iOS--《传值方法》之通知中心传值 - 简书http://www.jianshu.com/p/1ff9e44ccc78 | 多年iOS开发经验总结(一) - 简书http://www.cnblogs.com/[...]
关于iOS应用开发中如何实现在一个ViewController 里面创建并且实现来个TableView或者多个!
由 YIem 撰写于
2016-10-21
浏览:3814 评论:0
关于iOS应用开发中如何实现在一个ViewController 里面创建并且实现来个TableView或者多个!
关于iOS开发中TableViewCell 点击快而引起的数组崩溃解决方法
由 YIem 撰写于
2016-10-21
浏览:4317 评论:0
关于iOS开发中TableViewCell 点击快而引起的数组崩溃解决方法
关于iOS开发中TableViewCell 重写新的样式!
由 YIem 撰写于
2016-10-21
浏览:4626 评论:0
关于iOS开发中TableViewCell 重写新的样式!
关于如何自定义iOS开发中的 TableView 区头中字体 大小 颜色 样式等等
由 YIem 撰写于
2016-09-23
浏览:4212 评论:0
关于如何自定义iOS开发中的 TableView 区头中字体 大小 颜色 样式等等传送门
iOS-UI-UITableViewCell 的自定义-自适应高度
由 YIem 撰写于
2016-01-27
浏览:3996 评论:0
iOS-UI-UITableViewCell 的自定义-自适应高度RootVC.m
iOS-UI-UITableView-移动-是否禁止跨区
由 YIem 撰写于
2016-01-25
浏览:5927 评论:0
[上部分 链接======][1]上部分链接-同上方链接TableView里面 1 2 3 一样#warning 移动 3 - 设置是否允许移动(BOOL)tableView:(UITableView )tableView canMoveRowAtIndexPath:(NSIndexPath )indexPath{return YES;}warni[...]
iOS-UI-UITableView 的编辑模式-插入-删除-
由 YIem 撰写于
2016-01-25
浏览:4360 评论:0
import "RootViewController.h"import "Student.h"@interface RootViewController ()<UITableViewDataSource, UITableViewDelegate>@property (nonatomic, retain) NSMutableDiction[...]
iOS-UI-UITabkeView -tableView整体刷新-单行刷新 方法
由 YIem 撰写于
2016-01-23
浏览:4233 评论:0
tableView整体刷新 重新执行所有协议方法 [_tableView reloadData]; 单行刷新// 参数1: 需要刷新的下标 // 参数2: 刷新动画 [_tableView reloadRowsAtIndexPaths:@[_index] withRowAnimation:UITableViewRowAnimationRight];
iOS-UI-UITableView-Cell - 辅助视图
由 YIem 撰写于
2016-01-23
浏览:4592 评论:0
// 辅助视图// cell.accessoryType = UITableViewCellAccessoryDetailButton;// 感叹号 // cell.accessoryType = UITableViewCellAccessoryCheckmark;// 对号 // cell.accessoryType = UITableV[...]
iOS-UI-UITableView - 结构体
由 YIem 撰写于
2016-01-23
浏览:3805 评论:0
// tableView结构 // tableHeaderView + tableView + tableFooterView // tableView -> section + row // section -> header + row + footer
iOS-UI-tableView的头部脚部区域
由 YIem 撰写于
2016-01-23
浏览:4071 评论:0
// tableView的头部脚部区域 // 头 (只有高度起作用) UIView *header = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]; header.backgroundColor = [UIColor redColor]; tableView.tableH[...]
iOS-UI-UITableView-indePath 定位分区 行 信息 包含section和row
由 YIem 撰写于
2016-01-23
浏览:4465 评论:0
// 设置 // indePath 定位信息 包含section和row cell.textLabel.text = [NSString stringWithFormat:@"s: %ld, r: %ld", indexPath.section, indexPath.row];
iOS_ui_UItableView-tableView点击方法
由 YIem 撰写于
2016-01-23
浏览:3597 评论:0
// tableView点击方法(void)tableView:(UITableView )tableView didSelectRowAtIndexPath:(NSIndexPath )indexPath{NSLog(@"点击"); // 取消选中效果 [tableView deselectRowAtIndexPath:ind[...]
iOS-UI-UITableView-tableView右部索引栏
由 YIem 撰写于
2016-01-23
浏览:4648 评论:0
// tableView右部索引栏(NSArray )sectionIndexTitlesForTableView:(UITableView )tableView{return @[@"a", @"1", @"啦"];}
iOS-UI_TableView- 行高-头部高度-脚部高度
由 YIem 撰写于
2016-01-23
浏览:4431 评论:0
// 高度控制// 行高(CGFloat)tableView:(UITableView )tableView heightForRowAtIndexPath:(NSIndexPath )indexPath{return 100;}// 头部高度(CGFloat)tableView:(UITableView *)tableView heightFor[...]
iOS-UI_TableView-自定义头部区域-自定义脚部区域
由 YIem 撰写于
2016-01-23
浏览:4135 评论:0
// 自定义头部区域(UIView )tableView:(UITableView )tableView viewForHeaderInSection:(NSInteger)section{UIView *header = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];he[...]
iOS-UI-分区头-分区脚名称设置
由 YIem 撰写于
2016-01-23
浏览:3931 评论:0
// 分区头名称(NSString )tableView:(UITableView )tableView titleForHeaderInSection:(NSInteger)section{return @"头头头";}// 分区脚部名称(NSString )tableView:(UITableView )tableView titleForFo[...]
iOS-UI-TableView-分割线样式-分割线颜色-行(Cell)高
由 YIem 撰写于
2016-01-23
浏览:4155 评论:0
// 分割线样式tableV.separatorStyle = UITableViewCellSeparatorStyleSingleLine; // 分割线颜色 tableV.separatorColor = [UIColor greenColor]; // 行高 - 如果使用协议方法设置行高, 此句无效 tableV.rowHeight = 200;
2015-12-24-TableView 数组
由 YIem 撰写于
2015-12-25
浏览:5576 评论:0
//// AppDelegate.h// UI13_练习//// Created by YIem on 15/12/23.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@interface AppDele[...]
2015-12-24-TavleView编辑
由 YIem 撰写于
2015-12-25
浏览:5035 评论:0
//// AppDelegate.h// UI12_TavleView编辑//// Created by YIem on 15/12/22.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@interfac[...]
2015-12-24-UITableVIewController
由 YIem 撰写于
2015-12-25
浏览:4285 评论:0
//// AppDelegate.h// UI12_UITableVIewController//// Created by YIem on 15/12/22.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>[...]
2015-12-24-RegisterCell注册cell重用池
由 YIem 撰写于
2015-12-25
浏览:5274 评论:0
//// AppDelegate.h// UI12_RegisterCell//// Created by YIem on 15/12/22.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@interfa[...]
1
2
Yiem
心比天高,命比纸薄。
文章
1293
评论
165
分类
16
标签
1293
页面
1
浏览
1293
随机文章
OC- 字典套数组 -- ...
2016-02-22- 服务器 ...
关于iOS应用程序开发 ...
今天是2017年1月2日 ...
淘宝卖家在后台修改 ...
老古董-今天不经意间 ...
#VPS商家跑路#关于最 ...
AlphaRacks 年付25美 ...
新年快乐、开工挣大 ...
RackNerd -最新VPS推 ...
Tags
ios(119)
便宜vps(119)
洛杉矶vps(107)
美国vps(105)
vps(98)
ios开发(91)
KVM VPS(89)
过年(77)
洛杉矶便宜VPS(73)
PayPal购买VPS(73)
还有多少天过年(71)
春节(64)
最新文章
一段和 AI 的瞎扯的内...
北京之行
请珍重,不相送。
百度:从价值观迷失到社会...
便宜年付10美元VPS推...
对升旗事件做评论
点赞表扬 GoDadd...
Hi,2025!
搬瓦工Bandwagon...
点名表扬下水星的垃圾产品...
最新评论
YIem
:
是的,需要发票的话还[...]
leeson
:
我也被坑了,前两年是[...]
YIem
:
安装完可以删除
绝对小白菜
:
下载好的Window[...]
啊鱼竿哦哦哦
:
哈哈哈
Links
帮助教程
HelpDocsHub
ipv6测试
个人博客
赵容部落
Typecho主题模版