What is the best way to show an item has been added to a list in iOS?
I have a list item in an iOS app that is ordered alphabetically.
When adding a new item to this list, there is no way to easily tell that this item has been appended - especially if your list is really long, you would have to scroll down to check if it actually has been added.
If the list was ordered chronologically, that would probably solve the problem since you'd see your newly added item topmost, but we'd like to keep it alphabetical.
Any suggestions on how to go about it? Perhaps a solution that is already a standard in iOS (if any)?