Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion floatingButtonTrial/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ - (void)viewDidLoad

}

#pragma mark UITableView Delegate and DataSources methods
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
Expand All @@ -72,7 +73,7 @@ -(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSI
return cell;
}


#pragma mark floatMenuDelegate methods
-(void) didSelectMenuOptionAtIndex:(NSInteger)row
{
NSLog(@"Floating action tapped index %tu",row);
Expand Down