// // CCUIAlertActivityView.h // CCFC // // Created by xichen on 11-12-28. // Copyright 2011 ccteam. All rights reserved. // #import <Foundation/Foundation.h> @interface CCUIAlertActivityView : UIView { UIAlertView *_alertView; UIActivityIndicatorView *_activityView; float _disappearTime; } // if set 0, then it won't disappear until you hide it. @property(nonatomic, assign) float disappearTime; - (id)initWithTitle:(NSString *)title; - (void)dealloc; - (void)show; - (void)hide; @end
可能有更新:
googlecode链接地址:http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCUIAlertActivityView.h
github地址: https://github.com/cxsjabc/iphone-common-codes-ccteam/tree/master/CCFC/files/CCUIAlertActivityView.h
本文介绍了CCUIAlertActivityView组件的实现方式与使用方法。该组件由CCFC项目提供,继承自UIView,集成了UIAlertView与UIActivityIndicatorView,用于显示带有活动指示器的警告视图。文章详细说明了组件的初始化、显示及隐藏等方法。
1521

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



