IPhone-common-codes-ccteam source code ccuiprogresshud. h

Source: Internet
Author: User
////  CCUIProgressHUD.h//  CCFC////  Created by xichen on 11-12-23.//  Copyright 2011 ccteam. All rights reserved.//#import <Foundation/Foundation.h>#if CC_ENABLE_PRIVATE_API && CC_COMPILE_PRIVATE_CLASS// a demo/* .h: id                     progHUD;  .m:  - (void)onProgressHUDLoadOk {         [progHUD done];         [progHUD hide];         [progHUD release]; }  - (void)xxx {         Class cls = NSClassFromString(@"UIProgressHUD");         progHUD = [[cls alloc] initWithFrame:CGRectZero];          [progHUD setText:@"Loading..."];         [progHUD showInView:self.view];          [NSTimer scheduledTimerWithTimeInterval:3.0f                                target:self                                selector:@selector(onProgressHUDLoadOk)                                userInfo:nil                                repeats:NO]; }*/@interface UIProgressHUD : UIView {}@end@interface UIProgressHUD(cc)- (void)showInView:(UIView *)view;      // show self in the view- (void)hide;           // hide self- (void)done;           // indicate that the progress is done@end#endif

There may be updates:

Googlecode link: http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCUIProgressHUD.h

GitHub address:

Https://github.com/cxsjabc/iphone-common-codes-ccteam/tree/master/CCFC/files/CCUIProgressHUD.h

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.