diff --git a/.gitignore b/.gitignore index 89c499e..6dae897 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,5 @@ profile *.moved-aside DerivedData .idea/ + +Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example.xcodeproj/ diff --git a/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/Default-568h@2x.png b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/Default-568h@2x.png new file mode 100644 index 0000000..0891b7a Binary files /dev/null and b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/Default-568h@2x.png differ diff --git a/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/Default.png b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/Default.png new file mode 100644 index 0000000..4c8ca6f Binary files /dev/null and b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/Default.png differ diff --git a/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/Default@2x.png b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/Default@2x.png new file mode 100644 index 0000000..35b84cf Binary files /dev/null and b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/Default@2x.png differ diff --git a/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example-Info.plist b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example-Info.plist new file mode 100644 index 0000000..9c48a92 --- /dev/null +++ b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example-Info.plist @@ -0,0 +1,41 @@ + + + + + + CFBundleIdentifier + com.ancientprogramming.${PRODUCT_NAME:rfc1034identifier} + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + + CFBundleDisplayName + ${PRODUCT_NAME} + CFBundleVersion + 1.0 + CFBundleShortVersionString + 1.0 + LSRequiresIPhoneOS + + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + \ No newline at end of file diff --git a/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example-Prefix.pch b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example-Prefix.pch new file mode 100644 index 0000000..6f5698c --- /dev/null +++ b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example-Prefix.pch @@ -0,0 +1,16 @@ +// +// Prefix header for all source files of the 'IOSLinkedInAPI-Example' target in the 'IOSLinkedInAPI-Example' project +// + +#import + +#ifndef __IPHONE_4_0 +#warning "This project uses features only available in iOS SDK 4.0 and later." +#endif + +#ifdef __OBJC__ + #import + + #import + +#endif \ No newline at end of file diff --git a/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/LIAAppDelegate.h b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/LIAAppDelegate.h new file mode 100644 index 0000000..bb649fd --- /dev/null +++ b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/LIAAppDelegate.h @@ -0,0 +1,19 @@ +// +// LIAAppDelegate.h +// IOSLinkedInAPI-Example +// +// Created by Jacob von Eyben on 04/27/13. +// Copyright (c) 2013 Ancientprogramming. All rights reserved. +// + +#import + +@class LIAViewController; + +@interface LIAAppDelegate : UIResponder + +@property (strong, nonatomic) UIWindow *window; + +@property (strong, nonatomic) LIAViewController *viewController; + +@end \ No newline at end of file diff --git a/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/LIAAppDelegate.m b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/LIAAppDelegate.m new file mode 100644 index 0000000..b66d3a8 --- /dev/null +++ b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/LIAAppDelegate.m @@ -0,0 +1,57 @@ +// +// LIAAppDelegate.m +// IOSLinkedInAPI-Example +// +// Created by Jacob von Eyben on 04/27/13. +// Copyright (c) 2013 Ancientprogramming. All rights reserved. +// + +#import "LIAAppDelegate.h" + +#import "LIAViewController.h" + +@implementation LIAAppDelegate + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions +{ + self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; + // Override point for customization after application launch. + self.viewController = [[LIAViewController alloc] initWithNibName:@"LIAViewController" bundle:nil]; + self.window.rootViewController = self.viewController; + [self.window makeKeyAndVisible]; + return YES; +} + +- (void)applicationWillResignActive:(UIApplication *)application +{ + // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. + // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. + +} + +- (void)applicationDidEnterBackground:(UIApplication *)application +{ + // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. + // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. + +} + +- (void)applicationWillEnterForeground:(UIApplication *)application +{ + // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. + +} + +- (void)applicationDidBecomeActive:(UIApplication *)application +{ + // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. + +} + +- (void)applicationWillTerminate:(UIApplication *)application +{ + // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. + +} + +@end \ No newline at end of file diff --git a/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/LIAViewController.h b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/LIAViewController.h new file mode 100644 index 0000000..a995843 --- /dev/null +++ b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/LIAViewController.h @@ -0,0 +1,13 @@ +// +// LIAViewController.h +// IOSLinkedInAPI-Example +// +// Created by Jacob von Eyben on 04/27/13. +// Copyright (c) 2013 Ancientprogramming. All rights reserved. +// + +#import + +@interface LIAViewController : UIViewController + +@end \ No newline at end of file diff --git a/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/LIAViewController.m b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/LIAViewController.m new file mode 100644 index 0000000..c8c89dd --- /dev/null +++ b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/LIAViewController.m @@ -0,0 +1,29 @@ +// +// LIAViewController.m +// IOSLinkedInAPI-Example +// +// Created by Jacob von Eyben on 04/27/13. +// Copyright (c) 2013 Ancientprogramming. All rights reserved. +// + +#import "LIAViewController.h" + +@interface LIAViewController () + +@end + +@implementation LIAViewController + +- (void)viewDidLoad +{ + [super viewDidLoad]; + // Do any additional setup after loading the view, typically from a nib. +} + +- (void)didReceiveMemoryWarning +{ + [super didReceiveMemoryWarning]; + // Dispose of any resources that can be recreated. +} + +@end \ No newline at end of file diff --git a/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/en.lproj/InfoPlist.strings b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..b92732c --- /dev/null +++ b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/en.lproj/InfoPlist.strings @@ -0,0 +1 @@ +/* Localized versions of Info.plist keys */ diff --git a/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/en.lproj/LIAViewController.xib b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/en.lproj/LIAViewController.xib new file mode 100644 index 0000000..a646fc5 --- /dev/null +++ b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/en.lproj/LIAViewController.xib @@ -0,0 +1,138 @@ + + + + 1536 + 12A269 + 2835 + 1187 + 624.00 + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + 1919 + + + IBProxyObject + IBUIView + + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + PluginDependencyRecalculationVersion + + + + + IBFilesOwner + IBCocoaTouchFramework + + + IBFirstResponder + IBCocoaTouchFramework + + + + 274 + {{0, 20}, {320, 548}} + + + + + 3 + MC43NQA + + 2 + + + NO + + + IBUIScreenMetrics + + YES + + + + + + {320, 568} + {568, 320} + + + IBCocoaTouchFramework + Retina 4 Full Screen + 2 + + IBCocoaTouchFramework + + + + + + + view + + + + 7 + + + + + + 0 + + + + + + -1 + + + File's Owner + + + -2 + + + + + 6 + + + + + + + LIAViewController + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + UIResponder + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + + + + 7 + + + + + LIAViewController + UIViewController + + IBProjectSource + ./Classes/LIAViewController.h + + + + + 0 + IBCocoaTouchFramework + YES + 3 + YES + 1919 + + diff --git a/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/main.m b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/main.m new file mode 100644 index 0000000..0600d0e --- /dev/null +++ b/Example/IOSLinkedInAPI-Example/IOSLinkedInAPI-Example/main.m @@ -0,0 +1,19 @@ +// +// main.m +// IOSLinkedInAPI-Example +// +// Created by Jacob von Eyben on 04/27/13. +// Copyright (c) 2013 Ancientprogramming. All rights reserved. +// + +#import + +#import "LIAAppDelegate.h" + +int main(int argc, char *argv[]) +{ + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([LIAAppDelegate class])); + } + +} \ No newline at end of file diff --git a/Podfile b/Example/IOSLinkedInAPI-Example/Podfile similarity index 100% rename from Podfile rename to Example/IOSLinkedInAPI-Example/Podfile