Skip to content

Instantly share code, notes, and snippets.

Basic iOS

Learn how to make applications using the autogenerator tools of Xcode. These are things like storyboards and the Xcode generators like the master-details template. Inevitably this will be an application that uses a UITableView and then some sort of detail view with some buttons. Understand how connecting UI elements with the IBActions and instance variables works.

Objective-C

@dariye
dariye / Sketch-Pad.markdown
Created November 18, 2013 10:12
A Pen by pauldariye.
@dariye
dariye / tic-tac-toe
Created September 2, 2013 05:57
tic-tac-toe...woeful implementation in C++
#include <iostream>
#include <iomanip>
using namespace std;
using std::cout;
using std::cin;
using std::endl;
const int BOARD_SIZE = 9; //3x3 tic-tac-toe board