This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
BlueBadge.h | Wed Nov 05 07:43:21 -0800 2008 | |
| |
BlueBadge.m | Wed Nov 05 07:43:21 -0800 2008 | |
| |
MIT-LICENSE | Wed Oct 22 06:28:15 -0700 2008 | |
| |
MultipleDownload.h | Wed Nov 05 07:43:21 -0800 2008 | |
| |
MultipleDownload.m | Wed Nov 12 10:47:09 -0800 2008 | |
| |
README.textile | Wed Nov 05 07:43:21 -0800 2008 |
README.textile
MultiDownload class
To initialize and start the download:
self.urls = [NSMutableArray arrayWithObjects:
@"http://maps.google.com/maps/geo?output=json&q=Lai+Chi+Kok,Hong+Kong",
@"http://maps.google.com/maps/geo?output=json&q=Central,Hong+Kong",
@"http://maps.google.com/maps/geo?output=json&q=Wan+Chai,Hong+Kong",
nil];
self.downloads = [[MultipleDownload alloc] initWithUrls: urls];
self.downloads.delegate = self;
For processing the download, use MultiDownload delegates:
- (void) didFinishDownload:(NSNumber*)idx {
NSLog(@"%d download: %@", [idx intValue], [downloads dataAsStringAtIndex: [idx intValue]]);
}
- (void) didFinishAllDownload {
NSLog(@"Finished all download!");
[downloads release];
}
BlueBadge class
It uses CoreGraphic to draw a blue badge similar to the mail count in Mail.app. To initialize:
BlueBadge *blueBadge = [[BlueBadge alloc] initWithFrame: rect];
[cell addSubview:blueBadge];
[blueBadge release];
When you need to update the count:
[blueBadge drawWithCount: numOfMail];







