// // CCTableTipView.h // CCFC // // Created by xichen on 11-12-16. // Copyright 2011 ccteam. All rights reserved. // #import <UIKit/UIKit.h> #import "CCBaseTipView.h" // a kind of CCBaseTipView that owns a tableView // for linking, you should add QuartzCore.framewrok @interface CCTableTipView : CCBaseTipView { UITableView *_tableView; id _delegate; } @property(nonatomic, assign) id delegate; - (id)initWithFrame:(CGRect)frame withTableViewFrame:(CGRect)tableViewRect; - (void)setDelegate:(id)delegate; - (void)show; - (void)setTableViewBgView:(UIImage *)img; - (void)reloadData; @end
可能有更新:
googlecode链接地址:http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCTableTipView.h
github地址: https://github.com/cxsjabc/iphone-common-codes-ccteam/tree/master/CCFC/files/CCTableTipView.h
本文将介绍如何使用CCTableTipView组件,它是一种包含表格视图的提示视图,适用于链接操作。文章涵盖了组件的基本用法、属性设置、数据加载以及样式调整等内容。
109

被折叠的 条评论
为什么被折叠?



