user3817618
user3817618

Reputation: 3

QLPreviewController customise the title color of the navigation bar?

I can not create a custom QLPreviewController. Can someone help me with the code?

Upvotes: 0

Views: 1399

Answers (1)

Rémy Virin
Rémy Virin

Reputation: 3379

You can do it with appearance

Like this :

[[UINavigationBar appearance] setTitleTextAttributes:
 @{NSForegroundColorAttributeName: [UIColor whiteColor]}];

Upvotes: 2

Related Questions