1. Cross Platform(Titanium)*
2. Javascript
3. JQuery
4. C
5. Business Model
Thursday, January 27, 2011
[Private]My Goal for iPhone
1. JSON Parser
2. XML Parser
3. CoreData & DB Access(local & remote)
4. Socket
5. Thread
6. File upload & download & caching(with progress bar)
7. Cookie
8. NSURLConnection
2. XML Parser
3. CoreData & DB Access(local & remote)
4. Socket
5. Thread
6. File upload & download & caching(with progress bar)
7. Cookie
8. NSURLConnection
Wednesday, January 26, 2011
[Basic]Hightlight effect button
When you touch the button, it will give the glow effect to the button.
[button setShowsTouchWhenHighlighted:YES];
[button setShowsTouchWhenHighlighted:YES];
Monday, January 24, 2011
[Source]Push & Pop with only button
If you want to hide the navigation bar in the all view, you can do push and pop with button.
[Download]
[Source]Push & Pop with Navigation Bar
Create a project with navigation controller. It hide the navigation bar at the first view and show the navigation bar and back button at the second view. Push will show the second view and pop will show the first view. The left navigation bar item operates the back button function.
[Download]
Wednesday, January 19, 2011
[Basic]UIButton & action
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(150, 230, 19, 24)];
[button setBackgroundImage:[UIImage imageNamed:@"button.png"] forState:UIControlStateNormal];
[button addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button];
- (void)buttonClick:(id)sender {
// Do something ...
}
[button setBackgroundImage:[UIImage imageNamed:@"button.png"] forState:UIControlStateNormal];
[button addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button];
- (void)buttonClick:(id)sender {
// Do something ...
}
Sunday, January 16, 2011
[Source]Tap Recognizer + Sliding View
When you tap the screen, the sliding message is appeared from the bottom and when you tap again, it disappeared.
[Download]
[Download]
[Link]iPhone Development
[General]
LambertPark http://lambert.tistory.com/
아이군의 블로그 http://theeye.pe.kr
*Ray Wenderlich http://www.raywenderlich.com/
*objectgraph http://blog.objectgraph.com http://apparentlogic.com/openflow/
*mobile tuts+ http://mobile.tutsplus.com/
[Multimedia]
Brent Simmons https://bitbucket.org/brentsimmons/ngmovieplayer
LambertPark http://lambert.tistory.com/
아이군의 블로그 http://theeye.pe.kr
*Ray Wenderlich http://www.raywenderlich.com/
*objectgraph http://blog.objectgraph.com http://apparentlogic.com/openflow/
*mobile tuts+ http://mobile.tutsplus.com/
[Multimedia]
Brent Simmons https://bitbucket.org/brentsimmons/ngmovieplayer
Thursday, January 13, 2011
[Source]Tap Recognizer
This source is for the tap recognization in the iPhone.
When you tap the screen, the "Oh! iPhone mad" mark appear and soon disappear at the tap point.
[Download]
Tuesday, January 11, 2011
[Basic]NSURL link (to Safari)
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://www.google.com"]];
Monday, January 10, 2011
[Basic]AlertView
- (void)viewDidLoad {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title"
message:@"Message\nMessage"
delegate:self cancelButtonTitle:nil otherButtonTitles:@"OK", @"Cancel", nil];
message:@"Message\nMessage"
delegate:self cancelButtonTitle:nil otherButtonTitles:@"OK", @"Cancel", nil];
[alertView show];
[alertView release];
[alertView release];
}
- (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)buttonIndex {
if (buttonIndex == 1) { // "Cancel" Button, close the alertView;
if (buttonIndex == 1) { // "Cancel" Button, close the alertView;
// Do something
} else { // buttonIndex == 0 // "OK" Button;
// Do something
}
}
}
}
Subscribe to:
Posts (Atom)