Normally, the UITableView is something like this:
[ cell 1 ]
[ cell 2 ]
[ cell 3 ]
[ cell 4 ]
But I want to make my own UITableView like this:
| | | |
| c | c | c |
| e | e | e |
| l | l | l |
| l | l | l |
| | | |
| 1 | 2 | 3 |
| | | |
And I want the use...
Hi
All examples/tutorials I can find regarding NSThreads and the only way I have ever dealt with them is using [NSThread detachNewThreadSelector:@selector(processDataMethod) toTarget:self withObject:nil]; to move all processing in a method to another thread sporting its own autoreleasePool etc.
This is good for "one shoot" operations t...
Hi there,
I'm curious if there's a way to detect a change of the displayed website inside a UIWebView. In an app I'm working on we're using a UIWebView to present a part of the functionality which are basically a few steps the user needs to follow. However, the will be a specific page at the end of these steps that I need to identify an...
I have a series of UIImages with which I need to simulate depth. I can't use scaling because I need to be able to rotate the parent view, and the images should look like they're stacked visibly in front of each other, not on the same plane.
I made a new ViewController-based project and put this in the viewDidLoad (as well as attached t...
Some apps display an "Add a caption" in the Preview Screen after taking/selecting an Image using UIImagePickerController. How do you do that?
...
Hi,
Has anyone been able to implement Facebooks Graph API in a native iPhone Application?
The documentation is pretty sparse when it comes to iPhone integration, but the calls to get users information looks a lot more light weight than the previous method of using FBConnect. So i would like to use it.
I have seen a few posts about bu...
i'm using uiwebview to display a very basic html page with just text. i want to support landscape and portrait orientations but i'm having a problem with resizing when the orientation changes. specifically, when the iphone is rotated to landscape, it zooms in on the text (i want the text size to remain the same and for it to fill the wid...
I need to draw an outline for a rounded rectangle. I know I can make lines and arcs, but maybe there is also a function for rounded rects?
...
Has anyone been able to connect to the You tube API within an Iphone application.
I am interested in displaying a list of videos from an artists channel in a UITableView.
If any one has done this or can point me in the right direction andy advice would be highly appreciated
Thanks
Tom
...
I'm looking for a good source for sound effects for my iPhone game. I like SoundSnap, but they charge you for every sound you download, not just the ones you end up using. Sound design in games can be a very iterative process and I don't want to pay for 10 sounds I never use before finding the right one.
freesound.org is another reall...
I need 8 rows with a UILabel, UITextField and UISwitch in each row. the Last 2 rows does not contain the UITextField. This is not working for me and not able to determine switch and textfield for a partcular row. When switch is on, textfield value must be saved with it. Please see code below and help!!!:
After visible rows Switch value ...
In an iPhone app, how do I keep the software keyboard from obscuring buttons, or UITextView fields in a View?
I've got the following layout:
View -\
UITextView
UIButton
... but, the keyboard obscures the button at the bottom when I'm typing in the UITextView. I tried using the following:
View -\
UIScrollView -\
...
First off I'm new at programming. I'm creating an app with one navigation bar controller. The app is pretty basic except for a quiz section that is comprised of 12 xibs. As the users takes the quiz a new xib is pushed onto the stack. I want to create a button that takes the user back to the home screen if they do not want to complete...
Hi i create simple web browser for my app and i don't know why when user click a link the address bar doesn't change as link address here is my code :
-(IBAction)webAddress:(id)sender {
[site loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[webAdress text]]]];
[webAdress resignFirstResponder];
}
- (BOOL)webView:(UIW...
I want to add line-numbers to my uitextview.
Do I have to write my own UI-Element? Or is there an other solition?
Thanks for help!
...
Hi guys,
Little background, the table view is filled by a fetchedResultsController which fills the table view with Strings. Now I'm trying to add a button next to each String in each tableview cell. So far, I've been trying to create a button in my configureCell:atIndexPath method and then add that button as a subview to the table cell'...
I'm trying to create a vertical toggle switch control for the iPhone (along the lines of UISwitch but vertical sliding).
I was wondering whether an existing control already existed or if there are any good tutorials that explain the basics of creating custom controls for the iPhone.
Currently I've tried using affine transforms to creat...
I have a application in the app store, the current Distribution certificate was issued before I configured APNS. I want to build a update that will include APNS.
My question is do I need to revoke and re-issue the Distribution certificate for APNS to work or is that just included? I know that I had to do that with the provisioning profi...
I have a View that contains a UITableView and a UITabBarController. I have set my IBOutlets, but the UITabbarController does not appear. Do I need to do anything else to allow it to appear?
Note:
I don't want the tab-bar to be displayed throughout the entire application. Only on one specific view.
...
I have developed an iPhone app with a launch image. When starting the app in the simulator, the image zooms in as expected. However, when the app is deployed to my physical device, the zoom animation is very short and sometimes completes instantaneously.
I'm sure it's nothing to do with my app start up as I put a sleep call in applicati...