This question already has answers here:
How to mimic two-finger scroll/drag gesture on ios simulator?
(7 answers)
Closed 9 years ago.
I am a blackberry developer. I'm new to IOS. I need to check for pinch events on IOS simulator. I googled it and saw images of two circles. Can you please tell me how I will get swipe (pinch or 2 circle) so that I can check my code?
Please give me any command, for example cmd+shift+2.
I am checking on iPad 6.0 simulator.
Use the option key on your keyboard. This will create two circles on the screen to indicate and mimic a two finger tap and pinch.
I think you hold the command key when you click on the simulator. Might be Option though.
Related
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
How to develop or migrate apps for iPhone 5 screen resolution?
I'm (still) trying to convert one of my iPhone applications to iPhone 5, but it still looks like this in the simulator...
What am i doing and why won't it fill up the entire screen?
Have you provided a 4" sized launch image? That's the indicator that tells the OS that your application supports the full screen.
Have you selected in your UIView attributes inspector in XCode iPhone 5 screen size?
Please have a look at the url,
iPhone 5 TabBar not functioning in proper position
Now, in xib, at the right side, under 'Interface Builder Document', put a tick-mark on use autolayout and fix your objects in xib accordinlgy.
Download and install Xcode 4.5 GM. Set a 4-inch launch image for
your app. This is how you get 1136px screen height (without it, you
will get 960px with black margins on top and bottom).
Test your app, and hopefully do nothing else, since everything should work magically if you had set auto resizing masks properly. If you didn't, adjust your view layouts with proper auto resizing masks or look into Auto Layout if you only want to support iOS 6 going forward.
Also note: The auto-rotation API has changed completely, take a look at that as well if your application supports any rotation other than default.
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Iphone App submission: Status bar and screenshots
We looked at some app pages in apple store, and found that the screen shots of apps always say "Carrier" instead of the name of any particular carrier - probably to be neutral.
Any way, here is the question, is that something apple does to all screen shots? or I have to modify my screen shots to be that way.
Second question, if that's something apple does, do I need to cut off the top part of my screens to pave the way for them?
The iPhone simulator shows the generic "Carrier" label.
The emulator doesnt have a carrier, so just take a screenshot of the emulator and you will be fine :)
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
UIKeyboardTypeNumberPad on iPad
I want to give users the option of only inputting numbers. The number pad for iPad pops up with other symbols etc. Is it possible to get the iPhone version of the number pad in an iPad app?
Unfortunately, this is not possible. You can only use the UIKeyboardTypeNumberPad to get the numbers on an iPad, and the letters and symbols are not locked out. If you really need this, I would recommend looking up tutorials about making custom keyboards and using NSMutableStrings. This way, you can create your own keyboard and experience, and still have the same number pad as the iPhone.
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
how to create iphone's wobbling icon effect?
I'm trying to figure out how to make objects "shake" like when you hold down your finger on apps in the homescreen, so you can move them around and put them in folders.
How can I achieve this?
The Three20 Launcher has this exact function. It's an opensource iOS framework, you could download it, run a demo project and replicate or use their implementation.
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
What's the best way to develop a sideswipe menu like the one in Facebook's new iOS app?
How can i create a sidebar similar to the facebook app for iOS (iPhone/iPad)? That sidebar that appears when you slide your finger horizontally. There is a component for this or is it just a UIView?
You're in luck! Somebody just created a complete sample app showing how to create that, and includes a video of the effect. Here it is:
https://github.com/BenHall/ios_facebook_style_navigation
There is no already made component to do that given by Apple.
I would say it's just an UIView under the main one that is slided on the right.
You might want to start from here and work your way out. The basic idea is very much there.