I have a UIScrollView subclass with a certain subview I'd like to prevent from scrolling (while all the other subviews scroll as normal).
The closest example to this I can think of is UITableView's "index strip" on the right side (look in the Contacts app to see an example). I am guessing this is a subview of the table (scrollview) but ...
I have a UIViewController that contains a UITabbarController which contains a UINavigationController.
When I am setting up my IB outlets, what should the File's Owner view outlet be set to?
...
Hello --
There is a very peculiar FBConnect bug that has just recently started occurring. I've redownloaded the FBConnect iPhone SDK and attempted to run their sample code.
The sample code crashes after I login.
There is no output to the console, just this:
[Session started at 2010-06-09 18:51:06 -0700.]
The only thing I changed i...
Hi,
I am new to iPhone. I heard from few people that it is possible to show a alert to user @ iTunes (mobile and iTunes desktop) and get a rating of the application. Is this true and possible ?
...
Is there a good UITabBarController example where it is NOT created in the appDelegate?
I would like to use a UITabBarController inside of a UIViewController, however dont know how to set the view outlet.
...
I have a UITabBarController that is loading a UINavigationController.
When I push a new view controller, is it possible to change the UITabBarController to a new set of tabs?
...
Hi guys,
Recently we've developed an iPhone app for an external company, and everything works fine in the app.
There is a section where the app pulls video from the client's server, and streams it into the iPhone's MPMoviePlayerController. This works fine on the iPhone and iPodTouch - both the video and the audio show up just great.
T...
If I have a plist which I have put into and array, which looks something like this
-Root
-Item 0 Dictionary
Name String Henry
Kids Array
-Item 0 String Lindy
-Item 1 String Paul
-Item 1 Dictionary
Name String Janet
Pets ...
I have the UIPicker setup with multiple components and a button below it. Depending on what the user has chosen with the UIPicker determines which new view will be loaded but I am having trouble determining how to extrapolate the information from the picker itself. Right now I have this method being called when the button is pressed:
...
according to my picture the upper picture is an original create automatically when navigation controller is push
if i try to create like this one it will appear like bottom picture.
how can i programmatic to create Back Button like upper picture?
here is my code to create Done button
self.navigationItem.leftBarButtonItem = [[UIBarB...
Hi,
I'm trying setup a map that displays different pin colors depending on the type/class of the location in question. I know this is a pretty common thing to do, but I'm having trouble getting the viewForAnnotation delegate to consistently update/set the pin color.
I have a showThisLocation function that basically cycles through a l...
I have an array of NSStrings:
Flower
Car
Tree
Cat
Shoe
Some of these strings have images associated with them; some don't. I can build an image name by appending .png to the name (e.g. Flower.png).
How do I check whether that image actually exists within the bundle before I try to load it into the view?
...
Okay, so this is weird
I have this code
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
switch (indexPath.row) {
case 1:
NSLog(@"Platform Cell Selected");
AddGamePlatformSelectionViewController *platformVC =
[[AddGamePlatformSelectionViewController alloc]
initWithNibNa...
I'm currently involved in a project where a number of iPads loaded with a special app are given away to a number of people at a certain event. Both because of time constraints as well as our desire to give these people a really exclusive app, we decided to prepare these devices using ad hoc installs of the app.
What will happen to the a...
is it Possible to change Text hours and min to another?
...
I've got a number of devices connected over wifi using GameKit. I have a simple UIAlertView popping up when peers (clients) receive data. All but the sender (server) show this alert view when data is sent, so I'm wondering if that's a bug in my app or if that's expected behavior. If the device doing the sending is also a GKSessionModePee...
I have several large word lists and I had been loading them in place in the code as follows:
NSArray *dict3 = [[NSArray alloc] initWithObjects:@"abled",@"about",@"above",@"absurd",@"absurdity", ...
but now it is actually causing an exc_bad_access error weirdly, i know it seems implausible but for some reason IT IS causing it. (trust m...
Hello,
I really would like to write an app or apps for iPhone / iPad. I've never done this so far because most of my work has been in windows environment. I recently got an i7 with windows 7 and love it, and this is what I am using to do development on currently. I would love to try out writing a simple App on a mac for either an iPhone...
hi,
is it possible to play movies out of a property list? Like is there's a "tag" with the filename in it which gets replaced by the actual iphone/ipad player? The movies are h.265 codec...
thanks
...
Hi all,
I'm facing a memory leak problem which is like this:
I'm allocating an object of class A in class B. // RETAIN COUNT OF CLASS A OBJECT BECOMES 1
I'm placing the object in an nsmutablearray. // RETAIN COUNT OF CLASS A OBJECT BECOMES 2
In an another class C, I'm grabbing this nsmutablearray, fetching all the elemen...