Third party software/code used by the Facebook Messenger app (iOS):
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // ZNOrigamiSegue.m | |
| // mindcar | |
| // | |
| // Created by Javi on 17/04/13. | |
| // Copyright (c) 2013 Zink In Apps!. All rights reserved. | |
| // | |
| #import "ZNOrigamiSegue.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UI- and App Frameworks Evangelist - Jake Behrens, behrens@apple.com, twitter: @Behrens | |
| - What's new in Cocoa | |
| - Accessibility in iOS | |
| - Building User Interfaces for iOS 7 | |
| - Getting Started with UIKit Dynamics | |
| - What's new in Cocoa Touch | |
| - What's New With Multitasking | |
| - Best Practices for Cocoa Animation | |
| - Improving Power Efficiency with App Nap | |
| - Introducing Text Kit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import "ViewController.h" | |
| @interface ViewController () | |
| @end | |
| @implementation ViewController { | |
| UIView *containerView; | |
| NSArray *subviews; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Increments automatically CFBundleVersion or CFBundleVersion and CFBundleShortVersionString depending if it's a Debug or Release version. | |
| # Created by Luis Ascorbe on 12/04/13. | |
| # Copyright 2013 Luis Ascorbe. All rights reserved. | |
| # Instructions | |
| # 1- Put this file on the same folder where it's the .xcodeproj file | |
| # 2- Create a new Run Script on Build Phases BEFORE Compile Sources | |
| # 3- Rename it as "Auto Increment Version" (or whatever you want) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @interface UIView (JSParallaxEffect) | |
| - (void)js_addParallaxEffectWithMaxOffset:(CGFloat)maxOffset; | |
| @end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // NSAttributedString+Attributes.h | |
| // A category for NSAttributedString and NSMutableAttributedString to easily get or set sub-attributes. | |
| // | |
| // Created by Shilo White on 9/22/13. | |
| // Copyright (c) 2013 XIDA Design & Technik. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| static UIImage * UIImageForSwatchOfColorWithSize(UIColor *color, CGSize size) { | |
| UIImage *image = nil; | |
| CGRect rect = CGRectMake(0.0f, 0.0f, size.width, size.height); | |
| UIGraphicsBeginImageContext(rect.size); | |
| { | |
| CGContextRef c = UIGraphicsGetCurrentContext(); | |
| CGContextSetFillColorWithColor(c, [color CGColor]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // NSDate+Utilities.h | |
| // | |
| // Created by PEDRO MUÑOZ CABRERA on 15/03/13. | |
| // Copyright (c) 2013. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> | |
| @interface NSDate (Utilities) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| typedef enum _UIBackgroundStyle { | |
| UIBackgroundStyleDefault, | |
| UIBackgroundStyleTransparent, | |
| UIBackgroundStyleLightBlur, | |
| UIBackgroundStyleDarkBlur, | |
| UIBackgroundStyleDarkTranslucent | |
| } UIBackgroundStyle; | |
| @interface UIApplication (UIBackgroundStyle) | |
| -(void)_setBackgroundStyle:(UIBackgroundStyle)style; |