Image did show up, after app release to app store

Hallo,

I used the rotator excatly after the description for Create a Model with Data. 

In the debugging, on real IOS device or simulator everything works fine, after submitting to the apple app store for review, the rotator didn't show the image anymore. All the images are in the folder Images and saved as MauiImage

Code:

XAML:

<rotator:SfRotator

                    x:Name="rotator"

                    BackgroundColor="Transparent"

                    HeightRequest="150"

                    ItemsSource="{Binding ImageCollection}"

                    NavigationDelay="2000"

                    NavigationDirection="Horizontal"

                    NavigationStripMode="Dots"

                    SelectedIndex="0">

                    <rotator:SfRotator.ItemTemplate>

                        <DataTemplate>

                            <Image Source="{Binding Image}" />

                        </DataTemplate>

                    </rotator:SfRotator.ItemTemplate>

                </rotator:SfRotator>

Model:

 public class RotatorModel

 {

     public RotatorModel(string imageString)

     {

         Image = imageString;

     }


     private String _image;

     public String Image

     {

         get { return _image; }

         set { _image = value; }

     }

 }

Viewmodel:

 public PremiumViewModel()

 {

    // _emailService = emailService;


     ImageCollection.Add(new RotatorModel("premium_image_101.png"));

     ImageCollection.Add(new RotatorModel("premium_image_102.png"));

     ImageCollection.Add(new RotatorModel("premium_image_103.png"));

}

 private List<RotatorModel> imageCollection = new List<RotatorModel>();

 public List<RotatorModel> ImageCollection

 {

  get { return imageCollection; }

  set { imageCollection = value; }

 }

Screenshot-0117-082239_1.jpg


Thanks,

Markus


1 Reply

KP Kamalesh Periyasamy Syncfusion Team January 20, 2025 12:31 PM UTC

Hi Markus,

 

Thank you for sharing the details of the issue along with your code snippets. We have reviewed your implementation and created a sample based on your code. After testing the sample in release mode on iOS Simulators, we were unable to replicate the reported issue.

 

To help you further, we have attached the tested sample and an output video for your reference. Please review them and let us know if there are any differences between your environment and our test setup.

 

Additionally, please let us know whether you are encountering this problem only while publishing the App in App Store or does it occur in release mode?

 

We look forward to your feedback to assist you further.

 

Regards,

Kamalesh P


Attachment: RotatorMaui_53bc1c9d.zip

Loader.
Up arrow icon