How may I customize app suggestions in iOS [closed] - ios

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I would like to customise App Suggestions in iOS programatically.
It usually says Good Morning and my app name.
Is it possible that I configure it to say something other than "good morning"?
Can I control when and where it appears?
I couldn't find much information in this regard.
Thanks,
Elstine

You can't modify App Suggestions from an application, as that content is outside of the scope of an app's sandbox.
"Good Morning" appears there because the App Suggestion feature detected that you usually use a particular app in the morning and greets you with an according message. Those strings come directly from this feature and are not app-dependent; therefore, they can't be changed as of now.

Related

Blocking and Being New Home Screen Swift iOS [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
I am new to Swift and iOS programming and I wanted to know if there was a way to essentially block other applications or have your application be the default Home Screen? The idea is a time-saving application so maybe totally hide text messages and the browser when it is enabled.
I saw that there is kind of a way to do this in Android, but wasn't sure if there was a way to do this with iOS.
No. iOS does not allow apps to have this level of permissions.
However, you may be able to achieve similar effect by using the Screen Time feature in iOS 12+

Can I customize the message shown at the bottom while multi tasking in iOS? [duplicate]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I would like to customise App Suggestions in iOS programatically.
It usually says Good Morning and my app name.
Is it possible that I configure it to say something other than "good morning"?
Can I control when and where it appears?
I couldn't find much information in this regard.
Thanks,
Elstine
You can't modify App Suggestions from an application, as that content is outside of the scope of an app's sandbox.
"Good Morning" appears there because the App Suggestion feature detected that you usually use a particular app in the morning and greets you with an according message. Those strings come directly from this feature and are not app-dependent; therefore, they can't be changed as of now.

Swift - Run Code Stored Online [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I know this is probably a long shot but I wanted to know if there is any relatively easy way to run swift code which is stored on a server or hosted somewhere other than the application bundle. I would like to be able to change single lines of code without having to publish an update to the app.
If anyone could help or has a work around then that would be great.
Thanks
No it's both not possible (there is no compiler on an iOS device) and not allowed (downloading code is expressly forbidden by Apple's app store guidelines.)
So you both cannot and may not do this.

Want to setup a voice-to-voice communication service/group call service on rails. Where should I start? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I already have a fair bit of experience making rails applications, but I have never really tried to make an application with the use of a microphone. I don’t need to have video call, only voice, but I would want to control how many people could connect to a single call. Also I would like it to not have to do with actual phone numbers, but have a completely separate service like skype. Any help would be appreciated, Thanks!
This is not a trivial rails app, but just from googling I found Adhearsion
Check it out: http://www.adhearsion.com/
Adhearsion is a full-featured framework for the development of
applications which interact with or control voice communications.

iPad development- copying the result [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am fresh to the iPad app development. Now I am developing a calculator. And I want copy my result of the calculation to textEdit or to my mail which is outside the application. How can I do it?
if the text is selectable users should be able to copy and paste the information using the iOS clipboard themselves, this is probably the easiest option if you don't have a specific other application for them to copy to.
You can use Apple's APIs to send an email and put the result into the body/subject as necessary, this would provide a much nicer user experience.
See this answer for more details.

Resources