Skip to content

Instantly share code, notes, and snippets.

@fmtonakai
fmtonakai / CustomAlertView.h
Created September 4, 2012 02:20
Custom AlertView with Interface Builder
//
// CustomAlertView.h
// CustomAlert
//
// Created by masaki.fuke on 2012/08/23.
// Copyright (c) 2012年 masaki.fuke. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
typedef void(^HTTPLoaderCompleteBlock)(NSData *data, NSError *error);
@interface HTTPLoader : NSObject
+(void)loadAsync:(NSURLRequest *)request complete:(HTTPLoaderCompleteBlock)completion;
@end