How can I animate like open book in iBook? - ios

I want to click image and open like when we click on book in bookshelf in iBook. Just simple flip , not to curl.Animate like we open hard-cover book :)
Could you guide me what call is that ?? or Could you guide me how to do that ?

You can try this Apple example https://developer.apple.com/library/ios/#samplecode/ViewTransitions/Introduction/Intro.html
It requires ios5 though.
But example basically uses UIView method
transitionFromView:toView:duration:options:completion:
that is available in ios4. Here is a link for it: Apple docs

Related

How to show EasyTipView above my Button in swift iOS

So I have a few buttons in my app that i want to show tool tips above. I am using the module EasyTipView but it shows the tool tip below my button, I want the tool tip above my buttons. Can anyone please help, I am super new to iOS and I know it's an easy task but I am unable to find a solution.
https://github.com/teodorpatras/EasyTipView
I think I found EasyTipView. It looks like it is on github at https://github.com/teodorpatras/EasyTipView. Is that it?
If so, that class has a property arrowPosition. The "Usage" section of the readme says:
Usage
First you should customize the preferences:
var preferences = EasyTipView.Preferences()
// deleted other preferences settings that aren't relevant
preferences.drawing.arrowPosition = EasyTipView.ArrowPosition.top
Further down in readme, it lists the legal arrow positions as .top, .bottom,.left,.right, and .any.
If you want your tool tip to appear below the view, you should try usingEasyTipView.ArrowPosition.top.

iOS addChildViewController with AdMob [iPhone, Objective C]

i'm trying to reuse this AdMobViewController class
i applied this like described in implementation sample and looks it works ok, but my view moves up and it's header under the actionbar now.
could you please advice how to move it back?
btw: i haven't experience with admob - does test device key only allows to test device on phone when app installed throw xcode, and won't be used when user download it from market?so user will see real ads?
found that method viewDidLayoutSubviews in provided class calculate size but don't takes into account bar heig

iOS error message tooltip

I need to show error message as a tooltip in iOS 8 but i don't know how to do it. What I want is something similar to the one shown in below image (I'm referring to the tooltip with messages Select and Select All):
There is a great collection of libraries which already target your problem.
For example have a look at: AMPopTip.
Then you could show the popover like:
self.popTip = [AMPopTip popTip];
[self.popTip showText:errorMessage direction:AMPopTipDirectionUp maxWidth:200 inView:self.view fromFrame:textField.frame];
and hide it:
[self.popTip hide];
Have a look at the github repo there are more examples for customizing this control.
You can find more which might suit your needs better here: cocoacontrols.com
I had a similar problem and wrote my own custom tooltip.
You can init with your custom view (i assume you write some delegations to detect actions within.) and present from anywhere.
Maybe not the best replacement of UIPopoverController but still works great. And a lifesaver for iPhone. Also highly customisable.
https://github.com/akeara/AKETooltip
Hope this helps.

How to create blackberry ui like homescreen

Please i would like help to create a screen like these:
,
Im particularly interested in the sliding area..i mean where you have the title, then you can scroll left or right for another title/section
Any help would be appreciated.
As per comments above. the answer would appear to be PaneView for OS 6.0 and above:
Tutorial here: dftr.ca/?p=190
OS 6.0 documentation here: PaneView

How the interface builder has been designed for the following type of application with splitviewcontroller?

I am posting a link. Can anybody please tell me that how the interface builder has been designed for this type of application?
http://itunes.apple.com/us/app/iorder-for-ipad/id385298425?mt=8
On this link, please look for the fourth image in the "Ipad Screenshots" section. The image on which a splitviewcontroller is taken and on the detailViewController the details of "Green Valley Inc." are displayed.
Looks like a clear splitviewController to me, so add one of those, programmaticly or via IB.
or whatever program u use.
Also it is the 5th screenshot ^_-
But, that's a standard splitView, hope that gets u going!
Download standard MultipleViews or so from developer.apple.com, which will set u on the way

Resources