Skip to content

Commit

Permalink
import the project
Browse files Browse the repository at this point in the history
  • Loading branch information
ntaku committed Jul 3, 2012
1 parent f2125aa commit ae387a4
Show file tree
Hide file tree
Showing 57 changed files with 5,594 additions and 1 deletion.
416 changes: 416 additions & 0 deletions ASFBPost.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

49 changes: 49 additions & 0 deletions ASFBPost/ASFBPost-Info.plist
@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.appstair.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>fb1234567</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
30 changes: 30 additions & 0 deletions ASFBPost/ASFBPost-Prefix.pch
@@ -0,0 +1,30 @@
//
// Copyright (c) 2012 AppStair LLC. All rights reserved.
// http://appstair.com
//

#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>


// Shortcut

#define LOG(...) NSLog(__VA_ARGS__)
#define UIAppDelegate (AppDelegate *)[[UIApplication sharedApplication] delegate]
#define IPAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
#define LS(name) NSLocalizedString(name, @"")
#define RELEASE(x) [_ ## x release], _ ## x = nil


// Facebook

#define FB_APP_ID @"1234567"
#define FB_PERMISSIONS @"publish_stream"


// UserDefault for Facebook

#define FB_ACCESS_TOKEN @"FBAccessTokenKey"
#define FB_EXPIRATION_DATE @"FBExpirationDateKey"
#define FB_LOGINNAME @"FBLoginName"

13 changes: 13 additions & 0 deletions ASFBPost/ASFBPostController.h
@@ -0,0 +1,13 @@
//
// Copyright (c) 2012 AppStair LLC. All rights reserved.
// http://appstair.com
//

#import <UIKit/UIKit.h>

@interface ASFBPostController : UITableViewController

@property (nonatomic, retain) UIImage *originalImage;
@property (nonatomic, retain) UIImage *thumbnailImage;

@end

0 comments on commit ae387a4

Please sign in to comment.