Questions tagged [large-title]

46 questions
4
votes
2 answers

iOS 11 largetitle bar tint color cannot be set

I having a problem in restoring back the bartint color for iOS 11 large title after had set the navigationbar to transparent. Reproduction step: Set the navigation bar background image and shadow to empty UIImage(). The navigation bar became…
4
votes
2 answers

How to handle iOS 11 large title animation when using multiple container views?

I am making an app at the moment where 1 screen has a segmented control with 3 segments. Initially I had 1 table view and when you change segment I would simply change the data source/cell etc and reload the table. While this works great there is…
crashoverride777
  • 10,581
  • 2
  • 32
  • 56
4
votes
1 answer

How to hide large title iOS 11 search controller

I have set the search controller of my navigation item, so that the search bar is positioned at the top of the screen. What I want to happen is that the search bar is in the 'title view' position like what used to happen on iOS 10. However, the…
Tometoyou
  • 7,792
  • 12
  • 62
  • 108
3
votes
1 answer

Navigation Bar Large Title transition delegate

I have enabled Large Title in my navigation bar with automatic Display Mode, so that it shrinks when user scrolls. Is there a way to get notified when this transition happens? I didn't found any delegate method for this. I have a Right Bar Button…
Adam Bardon
  • 3,829
  • 7
  • 38
  • 73
3
votes
0 answers

UICollectionView not bouncing when pulling down

I have the following function which I call in ViewDidLoad; func setUpNavigationBar() { guard let navigationBar = navigationController?.navigationBar else { return } navigationBar.prefersLargeTitles = true self.navigationItem.title =…
David Henry
  • 1,972
  • 20
  • 43
3
votes
1 answer

Programmatic beginRefreshing() on iOS11 has problems with largeTitles mode

We have found what seems to be a bug in UIKit but wanted to post here to see if anyone else has this problem or found a solution. We're trying to use the new iOS11 large titles and hoisted search bar/refreshcontrol. We seemed to have found a…
3
votes
1 answer

Navigation Bar black line with Large title

Thanks for taking the time to read. Firstly, let me say that I have tried to do my due diligence in searching for a solution to the problem, but to no avail, and it is stressing me out! So, if someone finds an answer could you please point me in the…
Paulo
  • 602
  • 1
  • 8
  • 20
2
votes
0 answers

large navigation bar with right bar button issue

i am setting large title to navigation bar and then on right side i am adding two buttons but button not set to the center with large title my code is as below Code navigationController?.navigationBar.prefersLargeTitles = true title = "Record" let…
Hussy
  • 23
  • 5
2
votes
2 answers

Transition to Large Title from Small title shows small title for a moment in the destination view controller

I have two view controller in a navigation controller. The root view controller has small title and the next view controller has large title. When I push the next view controller, I set self.navigationItem.largeTitleDisplayMode = .always In the…
Tamim Ibn Aman
  • 67
  • 3
  • 10
2
votes
1 answer

UINavigationBar with large title does not have background image

I ran into a problem when I updated an app so that UINavigationBar instances displayed large titles. The thing is that in some screens in my app, I don't want the UINavigationBar to have either shadow or backgroundColor, so I have a method to change…
2
votes
0 answers

Animation bug with always displayed large titles after popping view controller

I wanted to use the new Large Titles with largeTitleDisplayMode set to .always but got some strange animation issues while popping the pushed detail controller if the root UITableView's contentOffset.y is positive aka scrolled. So this is how it…
Laszlo
  • 2,803
  • 2
  • 28
  • 33
1
vote
0 answers

Multi line Large Title shows only first line in navigation bar with back button

Please tell me how to add a multi-line title in the navigation bar with a back button for iOS 16.4. I have already read all the discussions on Stack Overflow regarding similar topics. I have tried solutions from @krunal, @Kaiv Mata, and others, but…
1
vote
1 answer

Xamarin iOS large tittle scroll velocity snapping issue

I am using Xamarin.Forms version 5.0 to develop an app for iOS 15. I am struggling to smooth the large title scroll transition. My problem is outlined on this question: iOS 11 large navigation bar title unexpected velocity According to the above…
1
vote
0 answers

Partial search updater frame when large title used

When I use a SearchController with a different searchResultsController and I have the large titles active, I get a partial view of the search view controller. It appears that the target controller is drawn taking into account the height of the…
1
vote
1 answer

scroll to top of tableview and show large title iOS

I want to scroll to the top of my tableView and also show the largeTitle in the navigationBar when I tap on the tab in the tabbar. Using the scrollToRow method does not show the largeTitle: extension TableViewConstroller: UITabBarControllerDelegate…
WalterBeiter
  • 2,021
  • 3
  • 23
  • 48