Hi Alberto,
Greetings from Syncfusion.
Currently we are re-vamping our User Guide(UG) documentation, we will update our UG and let you know once the changes has been reflected on live.
Please use the below given sample in which we have used the View inside the SfRotatorItem.
NSMutableArray<SFRotatorItem> rotatorItemCollection = new NSMutableArray<SFRotatorItem>(); for (int i = 1; i <= 5; i++) { SFRotatorItem items = new SFRotatorItem(); UIImageView uiImageView = new UIImageView(); uiImageView.Frame = new CGRect(0, 0, this.View.Frame.Width, this.View.Frame.Height); uiImageView.Image = new UIImage("Images/Image" + i.ToString() + ".png"); items.View = uiImageView; rotatorItemCollection.Add(items); } rotator.DataSource = rotatorItemCollection;
|
Please have the sample from the link given below.
Please let us know if you need any clarification on this.
Regards,
Selva Kumar V.