Skip to content

Instantly share code, notes, and snippets.

View MonsieurDart's full-sized avatar

Mathieu Godart MonsieurDart

View GitHub Profile
@MonsieurDart
MonsieurDart / NSObject+Performer.h
Created March 18, 2011 09:23
Performing a Multi Parameter Method in Background in ObjC
//
// NSObject+Performer.h
// EurActiv
//
// Created by Mathieu Godart on 21/01/11.
// Copyright 2011 L'atelier du mobile. All rights reserved.
//
#import <Foundation/Foundation.h>
@MonsieurDart
MonsieurDart / SampleCell.h
Created March 24, 2011 11:00
A table view cell subclass which uses a nib file to create the content view of the cell. To have more info on how to use it and what is the concept behind it, please visit http://atelierdumobile.com/blog/2011/03/24/loading-custom-uitableviewcells-from-xib
//
// SampleCell.h
//
// Created by Mathieu Godart on 24/03/11.
// Copyright 2011 L'atelier du mobile. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface SampleCell : UITableViewCell {}
@MonsieurDart
MonsieurDart / gist:1165071
Created August 23, 2011 13:17
jQuery Mobile Transition Test Case
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery Mobile Transition Test Case</title>
</head>
<body>
<link rel="stylesheet" href="jquery.mobile-1.0b2.min.css" />
<script src="jquery-1.6.2.min.js"></script>
<script src="jquery.mobile-1.0b2.min.js"></script>
@MonsieurDart
MonsieurDart / MFMailComposeViewController+URLRequest.h
Created January 20, 2011 15:46 — forked from futuretap/WebViewController.m
Intercept mailto URLs in a UIWebView and send them to a MFMailComposeViewController
#import <Foundation/Foundation.h>
#import <MessageUI/MessageUI.h>
@interface NSURL (MailComposeViewController)
// Is the given request a mailto URL.
- (BOOL)isMailtoRequest;
@end