当前位置: 首页 > 软件库 > iOS代码库 > 列表(Table) >

UITableView-AnimationControl

授权协议 MIT
开发语言 Objective-C
所属分类 iOS代码库、 列表(Table)
软件类型 开源软件
地区 不详
投 递 者 秦才
操作系统 iOS
开源组织
适用人群 未知
 软件概览

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常用操作,比如添加、删除、移动等。