- rs/SDWebImage: Asynchronous image downloader with cache support with an UIImageView category http://hackemist.com/SDWebImage/doc
- magicalpanda/MagicalRecord: Super Awesome Easy Fetching for Core Data 1!!!11!!!!1!
- jasonmorrissey/JMNoise: A category on UIView to easily apply a noise texture. Uses no external images or dependencies to make it very easy to drop into projects.
- samuelsoe/ios-image-filters: photoshop-style filter interface for UIImage class on iOS to make instagram-style images
- alrokayan/Prayer-Time-Widget: Prayer Time Widget for Mac OS X Dashboard.
- michaeltyson/TPKeyboardAvoiding: Keyboard avoiding functionality for ScrollView, TableView and CollectionView
This file contains 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
// | |
// category_file.h | |
@interface SomeClass (Private) | |
@property (nonatomic, assign) id newProperty; | |
@end | |
NSString * const kNewPropertyKey = @"kNewPropertyKey"; | |
@implementation SomeClass (Private) | |
@dynamic newProperty; | |
- (void)setNewProperty:(id)aObject |
This file contains 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
# Install and use menlo font-patch from: https://gist.github.com/qrush/1595572 | |
# Setting GIT prompt | |
b_black=`tput setab 0` | |
b_red=`tput setab 9` | |
b_green=`tput setab 2` | |
b_cyan=`tput setab 14` | |
b_white=`tput setab 15` | |
f_black=`tput setaf 0` |
This file contains 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
// | |
// KSDIdlingWindow.h | |
// | |
// Created by Brian King on 4/13/10. | |
// Copyright 2010 King Software Designs. All rights reserved. | |
// | |
// Based off: | |
// http://stackoverflow.com/questions/273450/iphone-detecting-user-inactivity-idle-time-since-last-screen-touch | |
// |
#Better NSLog A quick replacement to NSLog in your Obj C project
This will need no extra effort at all and changes the way you see your logs in debug area.
###How it looks in Debug Area:
Before:
2013-01-29 15:46:24.076 Looptivity[76673:c07] ----2013-01-28 19:02:47 +0000
NewerOlder