summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.iOS
diff options
context:
space:
mode:
authorE.Z. Hart <hartez@users.noreply.github.com>2017-03-06 01:39:27 -0700
committerStephane Delcroix <stephane@delcroix.org>2017-03-06 09:39:27 +0100
commitbc53ebe2bfb1bfc1b3e4c8f098691670337b3412 (patch)
treed632a4b5046137ec15b2e4340efe52169a913f40 /Xamarin.Forms.Platform.iOS
parent4e7031903a20a7ca60fc38fa979b11cccc6c35e9 (diff)
downloadxamarin-forms-bc53ebe2bfb1bfc1b3e4c8f098691670337b3412.tar.gz
xamarin-forms-bc53ebe2bfb1bfc1b3e4c8f098691670337b3412.tar.bz2
xamarin-forms-bc53ebe2bfb1bfc1b3e4c8f098691670337b3412.zip
Using IUIActionSheetDelegate (#800)
Diffstat (limited to 'Xamarin.Forms.Platform.iOS')
-rw-r--r--Xamarin.Forms.Platform.iOS/ContextActionCell.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.iOS/ContextActionCell.cs b/Xamarin.Forms.Platform.iOS/ContextActionCell.cs
index 2e5925c7..90f04e9a 100644
--- a/Xamarin.Forms.Platform.iOS/ContextActionCell.cs
+++ b/Xamarin.Forms.Platform.iOS/ContextActionCell.cs
@@ -347,7 +347,7 @@ namespace Xamarin.Forms.Platform.iOS
{
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++)
{