The version of iOS (formerly iPhone OS) was released by Apple on 13 Oct 2011. iOS 5 runs on iPhone 3GS, iPhone 4, iPhone 4S, iPad and iPod Touch devices 3rd and 4th generation.
0
votes
1answer
11 views
Handling rotation of subclassed UINavigationBar with buttons
I have subclassed UINavigationBar to have a custom navigation bar within my application. The bar is re-used on multiple view controllers with the same style Menu button as the left button item, which ...
0
votes
0answers
26 views
Some nib objects are not init in iOS6
So I've been having problems with this for a while and not really noticing it I think. However I tried to do something basic this morning and I can't see why it's doing this, so I though I'd ask about ...
0
votes
2answers
48 views
can anyone tell flow of execution of blocks in objective c?
Hi iam working with Blocks in objective-c. I have just learn syntax, and how to write blocks. But i didn't understand execution flow. I googled it for flow of execution, i can't find.
I used the ...
0
votes
0answers
27 views
Memory Leak.. ABContactsHelper
The instruments shows following memory leak & I cannot figure out how to solve it.
Any ideas ?? I am using ARC base target 5.0 with -fno-objc-arc flags for this library.
0
votes
1answer
28 views
Setting up reused navigation bar item button for left button
I am using a Navigation Bar through out my application although not controller via a Navigation Controller (added to the VCs via Storyboard).
I would like to set a left bar button item to be the same ...
5
votes
0answers
65 views
Caching Issue with PDF Reader
I have developed a pdf reader using schwa/iOS-PDF-Reader API. I am experiencing a caching problem, I supply my file path dynamically to the API, but the reader always brings up the first pdf file ...
0
votes
2answers
93 views
Autoresizing not working in portrait mode
I'm adding a view to view controller in which there are certain components. My project needs to support both orientation.
I designed the view controller using story board in landscape mode. When a ...
3
votes
2answers
382 views
iOS 5 UIWindow makeKeyAndVisible closes modal
I have a scenario where I present a modal view controller from the main window's rootViewController. While it is loading the contents of this modal, I am switching to another loading window which I ...
2
votes
1answer
933 views
UIViewController containment
I'm trying to use the UIViewController containment feature in one of my projects. The app is meant to be used in landscape mode only.
I add UIViewController A as a child of UIViewController B and ...
6
votes
6answers
7k views
duplicate symbols for architecture i386 clang
I've seen several posts on google and stackoverflow related to this error, I've read all of them but still fetching the problem , I will be glad for a solution. Here is the error mesage I recieve when ...
0
votes
1answer
181 views
iOS UINavigationController transparency
In My app after a button action I want a NavigationController to pop up. I want this navigationcontroller to be transparent, so the the view under it can still be visible. The navigationcontroller"s ...
1
vote
3answers
1k views
How to insert a NSString into a NSMutableString?
I have a NSMutableString where i need to insert another NSString at two places. My NSMutableString is
NSMutableString *webServiceLinkWithResponses = [[NSMutableString alloc] ...
-4
votes
1answer
46 views
Which kind of view is that? - IOS5
Please, can you indicate me which kind of view is it?
Section 1.(red)
Section 2.(blue) it has scroll
section 3. (green)
Many thanks
UPDATED
7
votes
1answer
797 views
Alternatives to appearance proxy for Table Cells' UILabel setFont
I'm loving being able to use an appearance proxy in my iOS5 app to customise the NavigationController UI elements system-wide, however:
I have a lot of nested tables in my app, of which I'd love to ...
2
votes
2answers
3k views
iOS basic FTP setup; Read and Write Stream
I'm attempting to create an iOS 5 app with some very basic FTP functionality and need some guidance. It will be connecting to a device on a local network and performing read/write actions with ...