Questions tagged [uiviewanimationtransition]

Specifies a transition to apply to a `UIView` in an animation block.

407 questions
0
votes
1 answer

iOS 7 App crashes with custom transitions

I am trying to add custom transitions to my existing iOS App. It seems to keep crashing. My app has a main navigation controller, which I have sub-classed. Root controller of the navigation controller acts as delegate for the UINavigationController.…
aniruddhc
  • 320
  • 1
  • 3
  • 15
0
votes
1 answer

Custom IOS7 Transition passing data to presenting View Controller

I am looking at implementing some custom IOS7 Transitions. For example these here. When a button is pressed in this example the following is run: -(void)showNewController:(id)sender{ UIStoryboard* storyboard = [UIStoryboard…
StuartM
  • 6,743
  • 18
  • 84
  • 160
0
votes
0 answers

Swipe view controller with gesture

I want to create an interaction between two view controller. The first view controller has a button with the action to show the second view controller from the bottom to half of his height. From there i can dismiss the second view controller, from…
0
votes
3 answers

View animation issue

I'm trying to flip animate a view into another view, which corresponds of a small section of the screen. Both views have the same dimensions and center. I keep getting as a result the animation of the full screen. From the code below, can somebody…
Joao
  • 619
  • 1
  • 5
  • 14
0
votes
1 answer

Quick series of [UIView transitionWithView...] not going smoothly

I've got a view which is a 4x4 grid of images, and am trying to achieve the effect of every square, going from top to bottom and left to right, flipping over to reveal a new image. Should be a bit of a "ripple" effect, so the top left square starts…
DanM
  • 7,037
  • 11
  • 51
  • 86
0
votes
1 answer

iOS7 view transition effect zoomed in

Hi maybe this is a duplicated question and I just don't know the keyword to describe my question, if this is the case please point out. I'm currently implementing a transition between two view, as the second view shows, it should looked like it's…
boreas
  • 1,041
  • 1
  • 15
  • 30
0
votes
1 answer

slide transition navigate html pages uiwebview

Hello everyone i have a uiwebview which is loading a website. So the website has links on click which will open a different page. My question is how to add a slide transition when navigating from 1 page to another? Like kCATransitionFromLeft ? Or…
veereev
  • 2,650
  • 4
  • 27
  • 40
0
votes
2 answers

How can i optimize UIView Transition Animation?

I am transitioning between views with the following code: // Populate view2 here UIView *theWindow = [_view2 superview]; [_view2 removeFromSuperview]; CATransition *animation = [CATransition animation]; [animation setDuration:0.25f]; [animation…
GameDevGuru
  • 1,095
  • 2
  • 12
  • 27
0
votes
1 answer

How to do a horizontal flip animation without setting views to nil?

I am doing the "standard" flip between a map and a list view inside a UIViewController with navbar on top, there is a button there that toggles between map showing and list. I am performing the transition with this method: [UIView…
bogen
  • 9,954
  • 9
  • 50
  • 89
0
votes
0 answers

UIView amination not animating

I have a Google IOS SDK Mapview which has a peer level view that is a UITableView. I am trying to animate that once a cetain condition is met, the alpha be set to 1 and frame be that of the mapivew. My code is [self.myTableView reloadData]; …
DrBug
  • 2,004
  • 2
  • 20
  • 21
0
votes
1 answer

Changing Push ViewController animation to look like a "pop" animation, come in from left to right

Right now I am using a segue from storyboard to push a view controller and there is just the one push transition. How can I imitate the "Pop" transition in code? Can I do this while still using storyboard for my other transitions in place…
SirRupertIII
  • 12,324
  • 20
  • 72
  • 121
0
votes
1 answer

UIPopovercontroller Flip animation

Can we flip UIPopovercontroller horizontally so as to load a new subview view? Is it possible to achieve an animation which does: Load small view in UIpoovercontroller first and on a click of a button in popover Flip UIpoovercontroller and loads…
sniper
  • 399
  • 1
  • 3
  • 9
0
votes
1 answer

Text resizes on animation transition

When trying to animate a view using [UIView transitionWithView] the text resizes, while I don't appear to be doing anything with the font size. The view contains three buttons. Two buttons representing 'tabs' and a single button to edit the text on…
Aeveus
  • 5,052
  • 3
  • 30
  • 42
0
votes
1 answer

iOS Storyboard flip horizontal animation disables text fields

I have a very simple story board . There is no code involved in this yet. The problem I am having is that when I change the transition to "Flip Horizontal" the text fields get disabled for some reason (i.e. clicking on the text field does not…
Naveed
  • 2,942
  • 2
  • 25
  • 58
0
votes
1 answer

NSArray to display photos inside a UIImageView

I need a little help. I am new to programming and I am trying to create an app that shows photos, like they were a magazine. I can say I am on the half path. I am trying to create a NSArray with the name of the photos, so I can display them in a…