Can I customize the message shown at the bottom while multi tasking in iOS? [duplicate] - 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

Displaying a message at the top of the ViewController [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 4 years ago.
Improve this question
I want to display a message to the user in the same way as the following message "Invalid password" but I do not know what this kind of messages are called, and how they can be implemented.
These are not standard messages, they are just UIViews (with a slight transparancy) that are located on top of the view stack and being hidden and displayed due to some events.
Just search for something like "overlay views" in a search engine of your choice.
I quickly found the following (without knowing them):
https://github.com/SwiftKickMobile/SwiftMessages
http://zappdesigntemplates.com/create-your-own-overlay-view-in-swift/
Please use below library for the same.which is very appropriate and accurate and very easy to implement.
https://github.com/SwiftKickMobile/SwiftMessages
I think SwiftMessages is easily fulfill your requirements.

How may I customize app suggestions in iOS [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 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.

How to send an E-mail over an iOS app using Swift? [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 would like to allow users to send me emails directly through my app, and am wondering if this is possible to do?
Your best and most simple way is to bring up the send email view (or even mailto:) with your app specific email to receive comments and requests on.
Another option is to design a web page that has a couple of fields for information and then hooking it up with PHP.
Just about anything works, it all depends on how you balance user experience and easy of implementation.

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