Skip to content

Instantly share code, notes, and snippets.

@enormego
enormego / Events.h
Created July 7, 2009 14:09
Asynch TableViewCell Images
//
// Events.h
// TWI
//
// Created by Shaun Harrison on 3/18/09.
// Copyright enormego 2009. All rights reserved.
//
#import <UIKit/UIKit.h>
void UIAlertViewQuick(NSString* title, NSString* message, NSString* dismissButtonTitle) {
UIAlertView* alert = [[UIAlertView alloc] initWithTitle:title
message:message
delegate:nil
cancelButtonTitle:dismissButtonTitle
otherButtonTitles:nil];
[alert show];
[alert autorelease];
}
@enormego
enormego / EGOCache.h
Created July 6, 2009 13:31
Caching for Objective-C/iPhone -- All new updates will be here: http://github.com/enormego/EGOCache
//
// EGOCache.h
// enormego
//
// Created by Shaun Harrison on 7/4/09.
// Copyright 2009 enormego. All rights reserved.
//
#import <Foundation/Foundation.h>
//
// EGOTitledTableViewCell.h
// EGOClasses
//
// Created by Shaun Harrison on 6/2/09.
// Copyright 2009 enormego. All rights reserved.
//
#import <UIKit/UIKit.h>