skip to Main Content

So I need to add a mobile operator to Xcode simulator. Currently it looks like this no mobile operator at all

And i want it to be like this(the carrier thing)

So my question is if there’s a way to do it in the Xcode simulator and if so how?

3

Answers


  1. I dont think u can add mobile cause of similator doesn’t have SIM card. operator.Similator can work as a real device as coding, but it does not contain all the features of the real device. Simulator is a program and other device.

    If you want to do something for a feature that can only be on a real device try this with a real device like mobile operator operations

    It’s similar to taking a photo from the phone and uploading it to the app. The simulator does not have a camera feature, so if you try to open the camera in the simulator, the application will crash. You need to test this on a real device

    Login or Signup to reply.
  2. I don’t think so that you can achieve exactly same that you posted in question but in iOS we have flexibility to change simulator status bar like battery level, time, WiFi state, cellular state.

    this feature is called simctl you can Google more details about it.

    to specifically change status bar use simctl status_bar

    Login or Signup to reply.
  3. The status icons you see depends on the model of the iPhone. According to this page, phones that use Face ID do not display the carrier in the status bar, and phones that use Touch ID do.

    enter image description here

    iPhone models with Face ID

    enter image description here

    iPhone models with Touch ID

    So just go to File -> Open Simulator, and select a different simulator that uses Touch ID, such as iPhone SE.

    Also,

    If you can’t see an icon, check Control Centre by swiping down from the top right-hand corner.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search