Event Kit UI framework
The Event Kit UI framework provides the classes needed to create, edit, and display events using a view controller.
It provides several configurable view controller classes. 5..more
Difference between NSString and NSMuttableString
Difference between NSString and NSMuttableString:
// Setup two variables to point to the same string
NSString * str1 = @"Hello World";
NSString * str2 = str1;
// "Replace" the second string
..more
UITableVIew
TableView Controller:
.m :
//
// TableViewSample1ViewController.m
// TableViewSample1
//
// Created by training on 7/13/10.
// Copyright __MyCompanyName__ 2010. All rights reserved.
..more
Objective C - Global Variables
If you studied any programming in school you were probably told to never use global variables because ultimately it can cause you end up with a messy slob of code that is difficult to maintain, and..more
iPhone Coding: Slider tutorial
Creating the Slider
To create a slider, you allocate it and initialize it with a frame just like any other UIKit control:
slider = [[UISliderControl a..more
Iphone Cocoa Programming tutorials
Iphone Cocoa Programming tutorials
This post is the second in a series reviewing the book Cocoa Programming,
by Aaron Hillegass. This part..more
Skinny Booth Camera for iPhone
New skinny booth camera. Funny video cam
Try this app its so funny!
It will take funny photos and videos
Download this Amazing funny booth now.
X-Ray scanner for iPhone
View More By This Developer
Open iTunes to buy and download apps.
Description
Did you know that you can use your iPhone & iPod Touch as an X-Ray Scanner??
For entertainment use.
Think out of the box!! This is
GPS Phone Tracker for iPhone
TRACK ANY PHONE NUMBER, ANY WHERE
Works with all iPhone , iPad, iPod touch
A cellular or wifi connection is required.
Amazing app just buy and track your friends.
Iphone Game: Speed Bag Scissorhands KO Boxing
Description:
Speed Bag Scissorhands is brought from the comedy world to the action packed video
game world. Speed Bag Scissorhands KO Boxing features Scissorhands vs the worlds most
hilarious characters.
Down
Iphone sdk - Objective-c: ScrollViewSuite Tutorials
Description
A series of examples that illustrate how to use UIScrollView.
1_TapToZoom demonstrates:
* Fitting the image to the screen on launch
* Detecting single, double, and two-finger taps
* Zooming in
iPhone 2D Game - Bag bigfoot
This is really very interesting game when i had developed this game really
I faced very complicated issues in the logic module. Finally i resolved all
the issue and delivered to the client.
The bigfoot was now much
OpenGL GLSprite Example
The GLSprite sample application shows how to create a texture from an image.
By looking at the code, you'll learn how to use Core Graphics to create a bitmap
context and draw an image into the context. You'll then se
Iphone Sample Tutorial-Intro to SOAP Web Services
-After creating our XML data / SOAP request, we create a URLRequest. We add HTTP Header values, those values you read from the WebService.
-We set the HTTP Method to POST
-We set out HTTP Body to the xml file we
UIView slide transition
// get the view that's currently showing
UIView *currentView = self.view;
// get the the underlying UIWindow, or the view containing the current view view
UIView *theWindow = [currentView superview];
// remove the current view and replace ..more
Iphone sdk: get contacts with the iphone sdk sample program
//
// UntitledAppDelegate.m
// Untitled
//
// Created by Pablo Abad Sanz on 12/03/08.
// Copyright __MyCompanyName__ 2008. All rights reserved.
//
#import "UntitledAppDelegate.h"
#import "MyView.h"
#import "AddressBook/AddressBook.h"
@i..more
Objective-C Tutorial: NSArray -- arrayWithContentsOfURL
// I am using strings, but you can add just about any object to an NSArray
// Creates an NSArray with one object
NSArray * myArray = [NSArray arrayWithObject:@"foo"];
// Creates an NSArray with multiple objects. Don't forget to add nil as t..more
2D sprite packing tool - plist
Spending countless hours creating sprite sheets?
Having trouble getting all the frames of that
pixel perfect animation into it? Say hello to
Zwoptex, with just a couple clicks you can have a
sprit..
Updated cocos3d – a 3D extension for cocos2d
cocos3d 0.6.2 has been released. This release adds
several new features, including fully-3D point
particles, CC3Layer tiling, textured box nodes,
and the ability to move and rotate a node
incremen..
I'm trying my hand at the iPhone course from
Stanford on iTunes U and I'm a bit confused about
pointers. In the first assignment, I tried doing
something like this..