Beautiful menu animation

Beautiful menu animation

Source code introduction

You can add beautiful animated content to the app's menu, customize the icon and title, and design cells and layouts according to your preferences.
Source code running screenshot

Source code snippet:

  1. - (IBAction)presentMenuButtonTapped:(UIBarButtonItem *)sender {
  2. // init YALContextMenuTableView tableView  
  3. if (!self.contextMenuTableView) {
  4. self.contextMenuTableView = [[YALContextMenuTableView alloc]initWithTableViewDelegateDataSource:self];
  5. self.contextMenuTableView.animationDuration = 0.15 ;
  6. //optional - implement custom YALContextMenuTableView custom protocol  
  7. self.contextMenuTableView.yalDelegate = self;
  8.           
  9. //register nib  
  10. UINib *cellNib = [UINib nibWithNibName:@ "ContextMenuCell" bundle:nil];
  11. [self.contextMenuTableView registerNib:cellNib forCellReuseIdentifier:menuCellIdentifier];
  12. }
  13.   
  14. // it is better to use this method only for proper animation  
  15. [self.contextMenuTableView showInView:self.navigationController.view withEdgeInsets:UIEdgeInsetsZero animated:YES];
  16. }
  17.   
  18. #pragma mark - Local methods
  19.   
  20. - ( void )initiateMenuOptions {
  21. self.menuTitles = @[@ "" ,
  22. @ "Send message" ,
  23. @ "Like profile" ,
  24. @ "Add to friends" ,
  25. @ "Add to favorites" ,
  26. @ "Block user" ];
  27.   
  28. self.menuIcons = @[[UIImage imageNamed:@ "Icnclose" ],
  29. [UIImage imageNamed:@ "SendMessageIcn" ],
  30. [UIImage imageNamed:@ "LikeIcn" ],
  31. [UIImage imageNamed:@ "AddToFriendsIcn" ],
  32. [UIImage imageNamed:@ "AddToFavouritesIcn" ],
  33. [UIImage imageNamed:@ "BlockUserIcn" ]];
  34. }

Source code download: http://download..com/data/1984622

<<:  Douban Photo Album Collection

>>:  OS X, iOS and Linux all have more vulnerabilities than Windows

Recommend

Refined operation strategy for users with repurchase rate of over 95%

What I want to share today is the refined operati...

Are the “viruses” produced by RNA vaccines harmful to the body?

Review expert: Gu Haitong, deputy chief physician...

What to wear to keep cool in summer? Of course, it's the "shroud"!

Flax (Linum usitatissimum) is a herbaceous plant ...

Analysis of "9377 Games" advertising strategy and marketing effectiveness

Today, let’s take a look at a classic promotion c...

How to promote and operate APP? You need to understand the fundamentals!

With the continuous development of the APP indust...

Why Apple is no longer cool under Cook (in-depth analysis)

In January 2020, Apple's market value increas...

Water celery or poison hemlock? Don't pick wild vegetables on the roadside

As spring arrives and the temperature rises, many...

How to do marketing on Women’s Day? Here are 4 tips for you!

Today is International Women's Day... NO, you...

Why is the conversion rate of my information flow ads so low?

Dear information flow optimizers , as you frequen...