Is there a way to add "real" stickers that behave like Sticker App stickers to your custom iMessage app extension? The only examples I've been able to find use use MSMessageTemplateLayout
, which as far as I can tell always shows the app icon and doesn't let you peel the stickers and stick them onto other messages.
Asked
Active
Viewed 425 times
1

shallowThought
- 19,212
- 9
- 65
- 112

Mike Marynowski
- 3,156
- 22
- 32
-
2All `MSStickerView`s can be "pealed" automatically. See sample https://developer.apple.com/library/content/samplecode/IceCreamBuilder/Introduction/Intro.html or WWDC video. – shallowThought Dec 05 '16 at 12:07
-
@shallowThought MSSticker / MSStickerView was what I was looking for. If you turn your comment into an answer I will mark it as read. None of the examples I had found up until I saw your comment used MSSticker, so that answers my question :) – Mike Marynowski Dec 07 '16 at 19:56
-
*I will mark it as the accepted answer – Mike Marynowski Dec 07 '16 at 20:20
1 Answers
2
"Pealing" is a feature of MSStickerView
. In other words, all MSStickerView
s can be pealed.
A nice walk-through iMessage Extensions is this Apple Sample code - IceCreamBuilder

shallowThought
- 19,212
- 9
- 65
- 112