Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

SDNetworkActivityIndicator.h 438B

123456789101112131415161718
  1. /*
  2. * This file is part of the SDNetworkActivityIndicator package.
  3. * (c) Olivier Poitrey <rs@dailymotion.com>
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. */
  8. #import <Foundation/Foundation.h>
  9. @interface SDNetworkActivityIndicator : NSObject
  10. + (id)sharedActivityIndicator;
  11. - (void)startActivity;
  12. - (void)stopActivity;
  13. - (void)stopAllActivity;
  14. @end