0
votes
1answer
32 views
How to Integrate krpano to show panoramic images in ios app
I want to show panoramic images in ios app.I found krpano is solution for that but i don't know how to integrate krpano in IOS app.Can you please help me out.
0
votes
1answer
12 views
Drop down menu on UITextField?
In my current view I have 7 different text fields. 1 of them has a UIPicker as its input by doing : self.pickerTextField.inputView = _thePicker;
My problem is this: For now all the text fields look ...
1
vote
3answers
21 views
Provisioning Profile ERROR while running in iPad
I am using Xcode 4.6.3.
I am getting this error messages while running the application in iPad,But first it was running correctly. Now we have renewed our license so i have changed certificate and
...
0
votes
1answer
18 views
How do I organize detail controller webview for different URLs on a table?
I have a static table view with dozens of static cells and groups inside it. I am using the Master-Detail Application template for the iPad. In the Detail View Controller I have a single WebView. I am ...
1
vote
0answers
11 views
Crash when open presentModalViewController using MFMailComposeViewController
One user reports my App crashed immediately after he taps the email button. But I cannot reproduce the problem on my device with same spec.
Crash log as attached.I call "[self ...
0
votes
1answer
50 views
Optimize for iPhone 5 screen without xib
I have to optimize one of my old project for iPhone 5 screen size. RootViewController DOES NOT HAVE a XIB.
I tried few tricks in application didFinishLaunchingWithOptions: method. But nothing worked.
...
0
votes
2answers
117 views
background app listen to audio input
Our app knows how to listen to the audio input. Can I open the app in the background (multi-tasking) and still get it to work as if it is open? Or can my app stay in the background and still get audio ...
0
votes
1answer
12 views
What properties to choose for passing Classes to a function
I'm kind of lost in this subject of object properties. The Idea of my app is to have a number of functions in the ViewController and store them via pointer to function (*attack) in a Class (enemy). ...
0
votes
1answer
8 views
Issue with GET http request in iOS
I'm having a serious issue with a GET request...
For some reason, when I set an NSString that is an authorization token that needs to be passed to the a header of an HTTP request, the authorization ...
0
votes
1answer
11 views
Process of animating paths using Quart2D
I am new to using Quartz2D, and to start small I wanted to draw a line, but have that line be animated from start to finish. From the blogs I have read and similar questions I have looked at, it seems ...
1
vote
0answers
56 views
UIActionSheet displays normal the first time, incorrect the second time
I have a strange issue with one of my iPad apps.
When the app starts up, I can tap a bar button item to display a UIActionSheet, and the action sheet displays normally from the bar button item with ...
0
votes
1answer
80 views
How to limit results in an array using count method
I currently use a system whereby if the user has upgraded the application, all results are viewed in a colour chart.
At the top of the ViewController.m
int kMaxRecords = 300;
Just before the array ...
0
votes
2answers
88 views
NSDate - Find the number of days in a month [duplicate]
Im my project, I am working with a lot of NSDate objects. I need to find a way to get the number of days in the current month (or any other month in that matter).
I guess this can be calculated with ...
0
votes
1answer
23 views
detailViewController crash on dealloc using arc due to property being released
I am having an issue with a view controller crashing when using the back button in a navigation view controller.
In the master table view controller, I overrode prepare for segue like so:
- ...
0
votes
0answers
16 views
Mediator pattern for flip animation?
My apps design should allow for the user to choose, which of the two views does he/she prefers. The animation between the two views should be UIModalTransitionStyleFlipHorizontal.
The ...