I just changed the font of the back button while using large titles in the navigation bar. This worked fine, but then I had the problem that the transition/animation of the small back button text to the large title of the previous page looked pretty weird. The large title appeared a second time with a kind of fade-in effect at the top left corner of the view controller. So how can I prevent this strange behavior?
Wrong large title animation with custom back button font
536 Views Asked by Mitemmetim At
1
There are 1 best solutions below
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in SWIFT
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Swift code with multiple NSDateFormatter - optimization
- How do I add multiple in app purchases in Swift Spritekit?
- cellForRowAtIndexPath and prepareForSegue return different label colors
- Getting this message in my console in xcode "Ignoring restoreCompletedTransactionsWithApplicationUsername: because already restoring transactions"?
- Change background of an Accessory View in a UITableViewCell
- fade in an bounce animation subview
- Create a PFObject and PFRelation after PFUser Sign Up
- Swift 2 - Pattern matching in "if"
- How do I give inputs through NSURL
- How do I add custom cells to TableView in Swift?
- UIWebView not loading URL in simulator
- Compiler complains that 'Expression resolved to unused function' when removing index in array of functions
- Cast from 'Int?' to unrelated type 'NSNumber' always fails
Related Questions in ANIMATION
- Animation in Java on top of JPanel
- Unexpected CALayer Vertical Flipping on 3D Rotation 'Bounce'
- Removing flashiness/ shakiness from scrolling text
- Animation text fade-in other text
- iOS UITableViewCell setSelected:animated: always has animated = NO
- Animation Trigger (Storyboard + Trigger) in C#
- How to animate a ball along the curved path using css3 animation?
- Animation issue on iOS 7 but not on iOS 8
- Asp.net /JQuery to show/hide animated gif before download
- Set animation YDelta in Java class?
- CSS Transition Animation Content Overlapping
- jQuery background animation - better performance
- Android listview top to down animation flashing when animating?
- How can i do a fill animation in Xamarin.Forms
- Create Page custom animations in Windows Phone 8.1 (Windows Runtime)
Related Questions in NAVIGATIONBAR
- html/css Vertical Navigation Bar
- NavigationView fistsSystemWindows with Translucent NavigationBar
- How to change status bar color in iOS7
- How to hide navigation bar in Android app?
- Android Navigation Bar covering viewpager content
- Navigation bar extended clickable area
- How can I make the status bar match a UINavigationBar's colour in Swift?
- Custom sticky navigation bar is very choppy
- matplotlib toolbar does not work in tkinter gui
- Navigation Menu Shrinks with Browser Sizing - CSS Issue
- HTML5/CSS can not contain ul with in ul in Microsoft Web Express
- Changing title of navigation bar from a file
- I'm trying to move the links in navigation bar to right by 160px but i can't do that
- Can't see Top Navigation Bar on Root View Controller
- Zurb Foundation topbar dropdown disappears on small screens
Related Questions in LARGE-TITLE
- iOS 14 large-title navigation bar doesn’t come back after shrinking
- Large navigation bar custom height
- Partial search updater frame when large title used
- SwiftUI: How to align a NavigationBarItem with a large title navigation title?
- iOS 11 large navigation bar title unexpected velocity
- How to set multi line Large title in navigation bar? ( New feature of iOS 11)
- Xcode lock view to bouncing navigation bar
- iOS 11 scroll to top when using large titles doesn't work properly
- Wrong large title animation with custom back button font
- custom navigation bar with image and two titles in iOS
- How to tweak large title in order to keep the transition but hide the large title itself?
- NavigationBar large title not collapse when I have custom image/view under tableView iOS 13
- Show search bar in navigation bar and large title also without scrolling on iOS 13
- How to hide large title iOS 11 search controller
- iOS 11 largetitle bar tint color cannot be set
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I could solve this problem on my own, but since I could not find a similar topic/problem/solution on the web I wanted to share the solution, just in case someone else has the same problem one day.
To solve this strange behavior I had to set the custom font for the normal UIControlState and additionally for the highlighted one.
Hope this helps! :)