You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use the code in a new blank Xamarin Forms project (instead of directly using the code from github), I have the following error in DrawShape.iOS:
'ShapeRenderer.Draw(RectangleF)': no suitable method found to override
Regarding other compilation errors, I had to change:
using CoreGraphics;
using UIKit;
instead of:
using MonoTouch.UIKit;
using MonoTouch.CoreGraphics;
... so maybe the new UIView from Xamarin Forms is somehow different than the one from MonoTouch.UIKit?
The text was updated successfully, but these errors were encountered:
When I use the code in a new blank Xamarin Forms project (instead of directly using the code from github), I have the following error in
DrawShape.iOS
:'ShapeRenderer.Draw(RectangleF)': no suitable method found to override
Regarding other compilation errors, I had to change:
instead of:
... so maybe the new
UIView
from Xamarin Forms is somehow different than the one fromMonoTouch.UIKit
?The text was updated successfully, but these errors were encountered: