how to disable red pop up in home screen iphone? [closed] - ios

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
when i am start video calling and press home button in red pop up is display on home screen.how to hide this red pop up in home screen.I have search but not getting and solution.

iOS turns the bar red as a service to your end-users, reminding them that that their audio or video is currently on. This serves as an alert of potentially being recorded by the app running in the background. This reminder makes it harder for them to start and forget a running app, potentially letting others to "spy" on them.
The only way to not have that bar when the user switches to home screen is to not run your app in the background with the microphone turned on.

This behavior is controlled by iOS platform on its own. Background modes which are using critical system resources (Microphone, locations) shows a "Bar" (red/blue) when the app is running and still using the resources. You can't hide this bar from your app code.

Related

My iPhone turned black while testing my app it works, but the screen has been black for 20 minutes [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I tested 2 of my apps on my iPhone today. The first one went fine and worked and nothing happened. The second one was working at first however it crashed my whole phone and there is a black screen. I pressed Siri button it works and all, but no pixels or brightness just black screen. Is there anyway to fix this problem or do I have to go to the Apple Store or get a new iPhone. It was my first time testing. Someone please help me.
Not a programming question. But try holding down the home and power button at the same time for 15 seconds. That usually works.
Try holding the power and home buttons for ten seconds. Your iPhone will then reboot, hopefully fixing the problem.

How do developers produce iOS Simulator animated .gifs? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I often see this a lot on GitHub. How can I reproduce this animated .gif effect?
https://github.com/autresphere/ASMediaFocusManager
You can record your screen with QuickTime and then convert that MOV file into a GIF.
Open QuickTime and click on the "File" menu then "New Screen Recording".
Drag your pointer to select the region of the screen you want to record, and then click the Start Recording button within the region.
When you're finished, stop recording. To stop recording, click the stop button in the menu bar. Now, go back to "File" menu and click "Export".
Save your screen recording as a movie.
Next, you can use Photoshop to open your screen recording and export it as a GIF.

Programatically testing an image as wallpaper [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have to display an image in the home screen with all apps icons programatically within the application for testing whether the image suits for the screen.Any ideas? Would be much appreciated!!
Sorry but iOS does not let you set a wallpaper programmatically or provide any way of knowing what is in the user's home screen.
The only solution I can think for your problem would be to create a simulated home screen yourself so you can show how the wallpapers look with the icons on top.
Maybe have a app icon library and let the user choose which app icons to simulate on the home screen. Although this would require a lot of maintenance to keep the icons up to date and it will probably be more trouble than its worth.

My iOS app should run on lockscreen [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I've got an iOS project from a customer that the app should run on lockscreen mode. Please check the below link which the customer shared with me.
https://itunes.apple.com/us/app/weather-lock-screen-free/id433369569?mt=8
https://itunes.apple.com/us/app/lockscreen+/id437555991?mt=8
I don't want to use jailbreaking method. So if its possible please let me know what are the steps to develop the app.
Does your customer understand that applications do not run on the lockscreen? The examples linked just make pictures that can be set as the lockscreen background. The portion shown on the lockscreen cannot have any buttons, functions, or anything that ever changes, as they are just pictures.
If you would like to proceed with making pictures, you would simply create an image of the appropriate size (whatever the device's resolution is) and format the contents so it fits nicely underneath the lock screen. Then save the image and instruct the user to set it as their background.

A few questions about icons [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I guess the answer will be this isn't possible, but I'd like to confirm and double check:
Is it possible for an app to be installed without an icon? If so, could the app make it appear at a later stage programatically?
Could two differing icons both launch the same app?
In the app store:
An app must be represented by an icon on the home screen. Without an icon file you get a white rounded rectangle with a glossy shine. If you later update it you can change the icon file.
Two app icons cannot launch the same app.
Are you familiar with home screen bookmarks? When the user bookmarks a website. With that and app URL schemes you could have two icons, but the user would have to add it themselves.
Outside of the app store
I'm unsure about how this could work on a jailbroken device.
The app icon is part of the signed app so can not be changed. I seriously doubt Apple would approve an app with a blank icon.
Unfortunately the answer to ALL your questions is no. Your second bullet point would be interesting but Apple definitely isn't going to let that happen!

Resources