Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Using IUIActionSheetDelegate (#800)
Browse files Browse the repository at this point in the history
  • Loading branch information
hartez authored and rmarinho committed Apr 11, 2017
1 parent c77a0b8 commit 97f99f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Xamarin.Forms.Platform.iOS/ContextActionCell.cs
Expand Up @@ -348,7 +348,7 @@ void ActivateMore()
{
var d = new MoreActionSheetDelegate { Scroller = _scroller, Items = new List<MenuItem>() };

var actionSheet = new UIActionSheet(null, d);
var actionSheet = new UIActionSheet(null, (IUIActionSheetDelegate)d);

for (var i = 0; i < _cell.ContextActions.Count; i++)
{
Expand Down

0 comments on commit 97f99f6

Please sign in to comment.