Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 days ago.
Improve this question
I'm trying update the Live Activity every second without using Push Notifications while keeping the app in background.
The official documentation mentions 2 methods
1.remote push notifications
2. BackgroundTasks
I tried tried background fetch(Updating and ending live activity), but not working properly.
If have any solution for this?. Thank You.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 days ago.
Improve this question
There is no (0, 0) LatLng. I changed the podfile and info file too.
I created the same API for both. Then I created a specific API for the iOS side and restricted it, again nothing changed. My app sends requests to the Google developers' API but does not show any traffic. I assume there is a problem, however, I could not fix it.
I appreciate your help. Thanks in advance.
This is the Traffic
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I wanted to use the PopUpButtonPickerStyle for my Picker which i use in a Form, but it just does not exist for me. Any other PickerStyle thats in the Apple documentation works.
Does anyone have an idea what could cause this?
It is clear from the Apple Documentation that PopUpButtonPickerStyle is only available on macOS 10.15+ and not on iOS.
Since you marked your question with the "ios" tag I am assuming you are building iOS app indeed and thus you cannot use it.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
I want to delete a record in a shared cloud container at a specific date time. When the record is created I know when it should be deleted.
Is there a way to create a trigger that will handle the work for me?
The only solution I came up with is:
Add code to the app that will delete the records
Use a server application to query and delete the records
The first solution is not preferred since it won't work if the user does not start the app. The second solution seems to be "overkill".
Is there a way to register a trigger on the CloudKit dashboard?
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.
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 6 years ago.
Improve this question
a part of my app involves building a IM group chat. As right now, I have the whole chat working. However, the problem is that obviously is not instant. It updates in ViewDidLoad(). I know that making it instant is the hardest part in making an IM chat. I'm currently using Parse, and I initially thought of using push notifications to update the page, but Googling a little more I found out that people were saying that there are a few cons in doing that such as the fact that the user would get a crazy number of push notifications.
Do you have any idea of how could I approach this problem or how I could get my chat to be in real time?
Thanks in advance for the help.
There are 3rd party services like PubNub (https://www.pubnub.com/) and Pusher (https://pusher.com/) that offer realtime events.