您的位置:首页 > 移动开发

iphone-common-codes-ccteam源代码 CCAutoDisappearView.h

2011-12-30 10:58 316 查看
//
//  CCAutoDisappearView.h
//  CCFC
//
//  Created by xichen on 11-12-16.
//  Copyright 2011 ccteam. All rights reserved.
//

#import <UIKit/UIKit.h>

// a kind of view that can disappear automatically
@interface CCAutoDisappearView : UIView
{
UILabel         *_msgLbl;
double          _tm;
UIView          *_superView;
UIColor         *_bgColor;
}

@property(nonatomic, assign)    double      tm;         // the time that disappear time
@property(nonatomic, assign)    UIView      *superView;
@property(nonatomic, retain)    UILabel     *msgLbl;
@property(nonatomic, retain)    UIColor     *bgColor;

- (void)setText:(NSString *)str;
- (void)show;

@end


googlecode链接地址(会有更新):http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCAutoDisappearView.h
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: