Tagged Questions
0
votes
2answers
36 views
UIView allocated programmatically not allocated at the x and y i have given. Going beyond that.
Hii every one i have allocated the UIView programmatically, Like,
detailView = [[UIView alloc] initWithFrame:CGRectMake(50, 100, 200, 200)];
detailView.alpha = 0.95;
...
0
votes
3answers
57 views
UIImage isKindOfClass issue
This is my code in my application,
[imageview setAlpha:1.0f];
[imageview setImage:[UIImage imageNamed:[NSString stringWithFormat:@"%@.png",[pages objectAtIndex:swipeCount]]]];
[imageview ...
0
votes
0answers
18 views
Splitview Orientation issue.(Portrait mode)
Background
I have an iPad splitview application.The split view is the rootview controller for the window.I need a login screen for the app and hence I present it like so :[self.splitViewController ...
-1
votes
0answers
42 views
download and view pdf from iPad app [closed]
I have an iPad app in which I would like to add a button that when pressed downloads a pdf document from my website on the iPad, enabling the user to view it here and then from within the app but also ...
0
votes
0answers
23 views
Difference in code in restoring in app purchase in ios 5 and ios 6
I coded the restore transaction for in-app purchases in an iPad ios 5.1.1 and it's working but our client says it's not, they are using iPad 2 ios 6, so my hunch is that it's on the version of device. ...
2
votes
1answer
29 views
how to display @2x image from database
I've integrated Facebook framework for ios 6.I'm fetching my friends details from the facebook and inserting into the sqlite database.and then this information is displaying in my application.while ...
-1
votes
0answers
11 views
Will updating iPad to iOS6 delete apps downloaded by another account? [closed]
I am planning to update my iPad to iOS6 but iTunes says that all or some files might be deleted like apps, music, or photos.
So I searched something about this matter, and I found out that I can ...
1
vote
1answer
80 views
UITabBarController and rotation iOS6
Happy Memorial Day for those in America!
I am new to iOS and Objective-C programming; a few weeks ago I inherited an iPad app-in-development that was being designed for iOS 5. I now have everything ...
0
votes
0answers
26 views
full screen button stops movie in UIWebview on iPad
I have a movie on a web server that is accessed and watched through a UIWebView in the app. It all works great but if I click the Fullscreen button the movie appears to expand outside of the web view ...
0
votes
0answers
61 views
How to specify a group when displaying an ABPeoplePickerNavigationController iOS 6
I couldn't find any answers for this issue with iOS 6 and xCode 4.6:
Does anyone know how to specify a group when initially displaying an ABPeoplePickerNavigationController (so it doesn't ...
1
vote
1answer
18 views
iPhone/iPad's Document Directory usage limit
I am working on an application where I have to store approximately 200 photos captured from camera in Documents directory. I know that there has to be some limit on the usage of Documents Directory, ...
1
vote
1answer
34 views
Calculating the exact size of a CGRect frame for a pdf based on UITextField
I am creating a pdf report that renders frames based on text in a series of UITextFields. Currently I am using a series of methods as below. The variables are used to keep track of the position for ...
1
vote
1answer
68 views
MGSplitViewController port to iOS 6 using storyboard?
I'm trying to upgrade my App from iphone only to Universal. I've a critical requirement to be able to hide the master view and show only the detail (in landscape) for a significant part of the App.
...
1
vote
2answers
50 views
Detect carriage return in UITextField
I have a app that enables the user to enter comments in a series of UITextViews. When complete the app generates a pdf report. Since the text entered varies in length the app needs to calculate where ...
0
votes
4answers
51 views
How to get application installation time in iPhone
Is there any way to get application insatllation time in iPhone? I wanted to use this information as a unique identifier, can I use it for this purpose?
0
votes
1answer
21 views
Cross dissolve transition required without using segue
I want to use the Cross Dissolve transition but not by using a segue. I use the code below to present the new view when a button is pressed but the transition is Cover Vertical. Is there any way of ...
0
votes
1answer
32 views
fading background while UIWebview has focus
Is it possible to fade the background of an app (a lightbox type effect) when a UIWebView has the focus, keeping the UIWebView sharp?
-1
votes
1answer
60 views
How to create iOS Newsstand app to host more vendors & magazines in it? [closed]
I just want to create an iOS Newstsand app that should host multiple vendors with their own magazine and subscriptions with in it. The app will download all contents as PDF format from the server. ...
0
votes
0answers
11 views
Drag XBPageDragView from top left to bottom right
I am using XBPageCurl library. I want to drag view from top left to bottom right corner. The sample code for XBPageDragView curls the page from bottom right. Any idea how to do it.
0
votes
0answers
17 views
FileReader returning the result fine in the first instance, but repeats that result in subsequent calls - PhoneGap 2.6 & iOS6
I'm trying to use PhoneGap to retrieve file contents however i'm getting some odd behaviour. It's working the first time around however, on subsequent calls it's returning the exact same result.
...
-3
votes
1answer
77 views
detect when subview showed up on screen
Have 2 functions, function 1 download data (photos and names) and when download is complete I call function 2 to update screen with that data (showing up buttons thumbnails with the photos and names).
...
0
votes
1answer
17 views
2nd (landscape) screen of application turns portait in iOS6
I 'm working on an iPad app in landscape mode only that worked nicely under iOS5 and under.
On iOS6, the 2nd screen (login screen) turns suddenly in portrait mode.
What parameters should i check ?
...
2
votes
4answers
98 views
How can I create a mixed, “Master-Detail and Tabbar” application in iOS
I'm trying to create a Master-Detail iPad application with a list of saved files in the Master view, and the main interface in the detail view. There will be many different views in the detail and ...
0
votes
2answers
87 views
iPad iOS 6 How prevent top corners UINavigationBar from rounding with background image
I have found a lot of posts on this but so far no luck. I am targeting iOS 6.0 and have a custom background image for my navigation bar. The top 2 corners are rounding and I have not found a way to ...
1
vote
1answer
47 views
what is the default orientation of the iPad?
I have heard a few conflicting comments regarding the default orientation of the iPad.
Some say it is portrait (how I tend to use my iPad), however some say it is landscape.
I have this sort of ...
0
votes
2answers
37 views
How do I debug iPad iOS5 Javascript error using an iPad running iOS6?
A client has notified me that our website is generating an error for iPads running iOS 5 when using Debug Console in Safari. I only have an iPad running iOS 6 which no longer has the debug console, ...
0
votes
1answer
37 views
TableView as subview of UIView not appearing when app lunches in landscape mode
I am developing an application in which i created tableview as subview with two rows which contains label and textfield to take username and password from user.
I took help from this site to create ...
0
votes
2answers
68 views
Stopping navigation bar from scrolling with table
I have a UITableViewController which successfully lists in the table view data fetched from a CoreData entity.
I want to have a navigation bar at the top with a couple of buttons to navigate around, ...
0
votes
0answers
47 views
UIAlertView with TableView inside not working in iPad
In my project I have to web response in a list format, user would select a particular response and again modified data would be sent to Server.
For this purpose I am using a UIAlertView with ...
0
votes
1answer
30 views
App crash while loading MKAnnotation in map view
In my application i have integrated a view controller like container (split view). Controller view controller container two view. Detail view and selection view(table view).
While selecting the ...