~urbanape/ubuntuone-ios-client/2.0-13-prerelease

« back to all changes in this revision

Viewing changes to musicstreaming/controls/AsynchronousImageView.h

  • Committer: Jason Foreman
  • Date: 2011-06-16 18:33:42 UTC
  • mfrom: (191.1.60 master)
  • Revision ID: jason.foreman@canonical.com-20110616183342-vl7a4804xsf0s1b5
Merging branches for v 2.0.

lp:~threeve/ubuntuone-ios-client/master
lp:~urbanape/ubuntuone-ios-client/downloader

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//
2
 
//  AsynchronousImageView.h
3
 
//  GLOSS
4
 
//
5
 
//  Created by Слава on 22.10.09.
6
 
//  Copyright 2009 Slava Bushtruk. All rights reserved.
7
 
//  ---------------------------------------------------
8
 
//
9
 
//  Modified by Ben Baron for the iSub project.
10
 
//
11
 
 
12
 
#import <UIKit/UIKit.h>
13
 
 
14
 
 
15
 
@interface AsynchronousImageView : UIImageView 
16
 
{
17
 
    NSURLConnection *connection;
18
 
    NSMutableData *data;
19
 
}
20
 
 
21
 
- (void)loadImageFromURLString:(NSString *)theUrlString;
22
 
 
23
 
@end