UITabBarItem setFinishedSelectedImage: deprecated in iOS7

Valentin Shamardin

setFinishedSelectedImage:withFinishedUnselectedImage: is deprecated in iOS7. Apple recommends to use setters of image and selectedImage with UIImageRenderingModeAlwaysOriginal instead. I can't find any example of how to use UIImageRenderingModeAlwaysOriginal. So the question is really simple: how to set images for UITabBarItem in iOS7?

ProgrammingNinja

If you're are trying to achieve displaying of the actual image at the UITabBar then use the following code.

[yourTabBarItem setImage:[[UIImage imageNamed:@"more.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];

and if you want to display image in original condition for the selected then use the following

[yourTabBarItem setSelectedImage:[[UIImage imageNamed:@"more.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];

these two are alternative to

setFinishedSelectedImage:  withFinishedUnselectedImage:

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Deprecated in iOS7: AudioSessionSetProperty

From Dev

UITabBar change background color of one UITabBarItem on iOS7

From Dev

reportAchievementWithCompletionHandler deprecated in iOS7 but replacement not specified

From Dev

sizeWithFont:constrainedToSize:lineBreakMode: deprecated in iOS7

From Dev

iOS7: method drawMapRect is deprecated

From Dev

What should I use instead of deprecated GKLeaderboardViewController in iOS7?

From Dev

GameKit GKMatchMaker inviteHandler deprecated in iOS7, what is the replacement?

From Dev

iOS 7 - Disable UITabBarItem tint color

From Dev

iOS 7 : 'isa' is deprecated

From Dev

IOS 7 sizeWithFont Deprecated

From Dev

'isConnected' deprecated in iOS 7

From Dev

ios 7 initWithOverlay deprecated

From Dev

IOS 7 sizeWithFont Deprecated

From Dev

iOS : How to add Underline in UITabBarItem

From Dev

UITabBarItem - Background color in iOS 9

From Dev

IOS 7.1 UITabBarItem titlePositionAdjustment and imageInsets

From Dev

IOS 7.1 UITabBarItem titlePositionAdjustment and imageInsets

From Dev

UITabBarItem - Background color in iOS 9

From Dev

How to get the AirPlay device name without using iOS7 deprecated methods

From Dev

How to properly customize UITabBar and UITabBarItem on iOS 7 and iOS 8?

From Java

Replacement for deprecated sizeWithFont: in iOS 7?

From Dev

Alternative to deprecated AudioSessionGetProperty, for iOS 7

From Dev

iOS 7 - UIPopoverController : deprecated arrows?

From Dev

MKPolylineView initWithPolyLine: is deprecated in iOS 7

From Dev

UITabBarItem change badge colour in iOS 7.1

From Dev

Change UITabBarItem badge color in iOS 7.1

From Dev

Change UITabBarItem badge color in iOS 7.1

From Dev

UITabBarItem change badge colour in iOS 7.1

From Dev

Changing UITabBarItem's Tint Color in iOS 9?

Related Related

  1. 1

    Deprecated in iOS7: AudioSessionSetProperty

  2. 2

    UITabBar change background color of one UITabBarItem on iOS7

  3. 3

    reportAchievementWithCompletionHandler deprecated in iOS7 but replacement not specified

  4. 4

    sizeWithFont:constrainedToSize:lineBreakMode: deprecated in iOS7

  5. 5

    iOS7: method drawMapRect is deprecated

  6. 6

    What should I use instead of deprecated GKLeaderboardViewController in iOS7?

  7. 7

    GameKit GKMatchMaker inviteHandler deprecated in iOS7, what is the replacement?

  8. 8

    iOS 7 - Disable UITabBarItem tint color

  9. 9

    iOS 7 : 'isa' is deprecated

  10. 10

    IOS 7 sizeWithFont Deprecated

  11. 11

    'isConnected' deprecated in iOS 7

  12. 12

    ios 7 initWithOverlay deprecated

  13. 13

    IOS 7 sizeWithFont Deprecated

  14. 14

    iOS : How to add Underline in UITabBarItem

  15. 15

    UITabBarItem - Background color in iOS 9

  16. 16

    IOS 7.1 UITabBarItem titlePositionAdjustment and imageInsets

  17. 17

    IOS 7.1 UITabBarItem titlePositionAdjustment and imageInsets

  18. 18

    UITabBarItem - Background color in iOS 9

  19. 19

    How to get the AirPlay device name without using iOS7 deprecated methods

  20. 20

    How to properly customize UITabBar and UITabBarItem on iOS 7 and iOS 8?

  21. 21

    Replacement for deprecated sizeWithFont: in iOS 7?

  22. 22

    Alternative to deprecated AudioSessionGetProperty, for iOS 7

  23. 23

    iOS 7 - UIPopoverController : deprecated arrows?

  24. 24

    MKPolylineView initWithPolyLine: is deprecated in iOS 7

  25. 25

    UITabBarItem change badge colour in iOS 7.1

  26. 26

    Change UITabBarItem badge color in iOS 7.1

  27. 27

    Change UITabBarItem badge color in iOS 7.1

  28. 28

    UITabBarItem change badge colour in iOS 7.1

  29. 29

    Changing UITabBarItem's Tint Color in iOS 9?

HotTag

Archive