UITableView-AnimationControl 是控制 UITableView 行/区间更新 持续时间和完结的方法。
代码示例[self.tableViewDataArray addObject:object]; [self.tableView beginSmartUpdatesForDuration:0.25]; [self.tableView insertRowsAtIndexPaths:indexPaths withRowAnimation:rowAnimation completion:^{ // Update animations ended. Do whatever you want! }]; [self.tableView endSmartUpdates];
<span style="font-size:18px;">// // UITableView.h // UIKit // // Copyright (c) 2005-2015 Apple Inc. All rights reserved. // #import <Foundation/Foundation.h> #import <CoreGraphics/CoreGraphics.h>
// // UITableView.h // UIKit // // Copyright (c) 2005-2014 Apple Inc. All rights reserved. // #import <Foundation/Foundation.h> #import <CoreGraphics/CoreGraphics.h> #import <UIKit/UIScrollView.h>
// // UITableView.h // UIKit // // Copyright (c) 2005-2014 Apple Inc. All rights reserved. // #import <Foundation/Foundation.h> #import <CoreGraphics/CoreGraphics.h> #import <UIKit/UIScrollView.h>
UITableView-Wave 使用波状效果实现 UITableView 重载的动画效果。
基于手势操作的UITableView,实现cell左右滑动,点击cell扩展等效果。划动列表cell的动作有挺不错的bounce(弹性)效果。 [Code4App.com]
实现一种特殊的列表效果。列表cell的布局呈现一个半圆形,拖动列表,列表顺着圆形来旋转。 [Code4App.com]
Simple-UITableView-Swift 是 Swift 编写的 Boilerplate UITablieView: 给定 tableData 数据数组 支持 XCode 6.1 和 Swift 1.1
让 UITableView 的 cell 产生特殊的动态效果。具体特色: 1:tableview在数据进行刷新时进行动画; 2:cell wave 的方向可以进行左右切换; 3:bounce效果。 详见: http://blog.csdn.net/hufengvip/article/details/24383381
用 Swift 语言写的一个UITableView常用操作,比如添加、删除、移动等。