iPad is a tablet computer designed by Apple running the iOS operating system. iPad applications are usually written in Objective-C in the Xcode IDE, although it's possible to use other tools to build iPad applications as well. This tag is related to iOS and Objective-C.
0
votes
1answer
13 views
Simulating a UIBarButtonSystemItemFlexibleSpace with a UIView, is that possible?
I need to create my own UIToolbar-like class. But due to UIToolbar limitations it will be a UIView based class to work more or less like a UIToolbar.
One of the things that is cool about UIToolbars ...
0
votes
0answers
10 views
Asp.net button control onClick Event working fine in browsers but not working in ipad safari?
I have an website in Asp.net and JQuery Mobile.Asp.net button control onClick Event working fine in browsers but not working in ipad safari?
0
votes
1answer
22 views
Define Option in Text
So, I can't seem to be able to get the define option in my UITextView (well it's a custom view of sorts). Right now, I have this in my CanPerformAction method:
- ...
-2
votes
2answers
13 views
Q: Getting biometric information from stylus for ipad
using a stylus... such as Jot Touch or Pogo Connect
how do I get biometric information such as coordinates (X,Y) pressure (T), stroke speed(S) when a user signs on the iPad (using objective-C) which ...
0
votes
1answer
35 views
UITableView: Can detect cell selection via tap gesture but not didSelectRowAtIndexPath
I have a UITableView embedded in a WEPopover. I can see the whole view and select cells except for the one at the bottom. Pressing the bottom row does not cause didSelectRowAtIndexPath to be invoked. ...
0
votes
0answers
4 views
isgl3d pod file did not show in iPad
I am trying to import POD file 3d object(export from Blender using) into my ipad using ISGL3D frameworks. I did not get any error but my ipad only show black screen. I try to debug line by line and it ...
0
votes
2answers
10 views
Different Image Served per Device Basis
I am getting into creating mobile device friendly websites and apps.
I am using bootstrap and HTML5 so I am fine with rearranging my layouts.
My question is, is what is the best way to resize images ...
0
votes
0answers
5 views
Appcelerator Changing image according to platform
I'm developing an app on Titanium.
Now I'm trying to change the image of my app according to its platform, mobile or tablet.
What am I doing wrong?
"#header[platform=ios formFactor=handheld]" :{
...
0
votes
0answers
13 views
AIR app on iPad - start crash
I created and installed an application for iPad according to the following instructions:
Apple iOS development process using Flash Builder
However, when I run this simple application, for about a ...
0
votes
1answer
14 views
Creating response to answering quiz questions in a table
I am creating an app for medical students, and one view is a quiz mode that randomly generates quiz questions with a table view of the answer options. In the current stage, the user selects an answer ...
0
votes
1answer
18 views
UITableView delete button overlaps to content
I'm preparing a UITableView with a custom prototype cell having a UISwitch widget on the right side, and I'd like to let my users be able to delete rows.
Everything is fine with that, except the fact ...
0
votes
0answers
8 views
iPad on iOS 6 “UIStatusBarStyleBlackTranslucent is not available on this device.”
I'm explicitly executing the following line of code targeted for an iPad:
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleBlackTranslucent;
which is giving me a runtime warning ...
0
votes
1answer
31 views
How to perform segue with no transition animation
I have an application which starts with a navigation controller. This navigation controller can open modal view controller:
- (void)openModalController:(id)sender
{
[self ...
1
vote
0answers
36 views
What happens under the hood when we do presentViewController?
Given the below code
self.view.backgroundColor = [UIColor yellowColor];
MyViewController *myVC = [[MyViewController alloc] initWithNibName:@"MyView" bundle:nil]
myVC.view.backgroundColor = [UIColor ...
-1
votes
0answers
16 views
Implementing UIPickerView that have countries on it in Cocos2D
I need to implement a picker view con cocos2d which brings you a list of countries. Should I do this with a .plist with all the countries or is another way?
How can you integrate an UIKit thing, in ...