required libs:
* ZipArchive - Obj-C impl of zip
* asi-http-request : http request help to assist with asynchoronous downloading of files
* minizip : support for ZipArchive
*
Added default splash screen for iOS app. (using the Wagic background to keep it neutral to module)
TODO: refine handling for iPad splash screen
* add selection screen and input screen for location of downloadable content. (ie core files, image files, etc )
* add support to opt out of backing up to iCloud for core files. Right now iOS will automatically backup all files under Documents folder to iCloud. Consider only allowing player data to be backed up to iCloud. All graphics and other assets are considered volatile.
35 lines
972 B
Objective-C
35 lines
972 B
Objective-C
//
|
|
// ASIS3Bucket.h
|
|
// Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest
|
|
//
|
|
// Created by Ben Copsey on 16/03/2010.
|
|
// Copyright 2010 All-Seeing Interactive. All rights reserved.
|
|
//
|
|
// Instances of this class represent buckets stored on S3
|
|
// ASIS3ServiceRequests return an array of ASIS3Buckets when you perform a service GET query
|
|
// You'll probably never need to create instances of ASIS3Bucket yourself
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface ASIS3Bucket : NSObject {
|
|
|
|
// The name of this bucket (will be unique throughout S3)
|
|
NSString *name;
|
|
|
|
// The date this bucket was created
|
|
NSDate *creationDate;
|
|
|
|
// Information about the owner of this bucket
|
|
NSString *ownerID;
|
|
NSString *ownerName;
|
|
}
|
|
|
|
+ (id)bucketWithOwnerID:(NSString *)ownerID ownerName:(NSString *)ownerName;
|
|
|
|
@property (retain) NSString *name;
|
|
@property (retain) NSDate *creationDate;
|
|
@property (retain) NSString *ownerID;
|
|
@property (retain) NSString *ownerName;
|
|
@end
|