imessage

Can you make a sticker app have sounds?

南楼画角 提交于 2021-01-20 11:40:46
问题 When you make an iMessage sticker application is it possible to have it make a sound once its tapped on? Example: You sent someone a sticker and they tap on it and it makes a noise. Thank you 回答1: Yes you can with iMessage. As per Apple documentation here. iMessage Application iMessage app. Your app can include stickers, text, video and audio. You can also use code to add functionality such as Apple Pay and in-app purchase. Choose to list your app in the Stickers category or another relevant

Can you make a sticker app have sounds?

不羁岁月 提交于 2021-01-20 11:39:46
问题 When you make an iMessage sticker application is it possible to have it make a sound once its tapped on? Example: You sent someone a sticker and they tap on it and it makes a noise. Thank you 回答1: Yes you can with iMessage. As per Apple documentation here. iMessage Application iMessage app. Your app can include stickers, text, video and audio. You can also use code to add functionality such as Apple Pay and in-app purchase. Choose to list your app in the Stickers category or another relevant

In-app Purchases from iMessage app extension

北慕城南 提交于 2020-01-23 10:56:11
问题 I created an app that uses in-app purchases, I already have set up the in-app purchases on iTunes and I even tested it using a sandbox user and all of this is working perfectly. now that I included an iMessage app extension, the same in-app purchase products return invalidProduct Id, but continues working well inside the main app. could be because the bundle id? mainapp: com.whatever.bundleid app iMessage: com.whatever.bundleid.iMessage iMessage extension: com.whatever.bundleid.iMessage

Can imessage extension open host app?

一个人想着一个人 提交于 2020-01-14 19:09:55
问题 I've tried [self.extensionContext openURL:completion] , but my app crashed. I heard some extensions can't use this method, can iMessage extensions? By the way, can host app activate its iMessage extension? 回答1: Share Extensions and Action Extensions are not designed to function as app launchers. App Extension Programming Guide There is no direct communication between an app extension and its containing app; typically, the containing app isn’t even running while a contained extension is

Can imessage extension open host app?

扶醉桌前 提交于 2020-01-14 19:08:00
问题 I've tried [self.extensionContext openURL:completion] , but my app crashed. I heard some extensions can't use this method, can iMessage extensions? By the way, can host app activate its iMessage extension? 回答1: Share Extensions and Action Extensions are not designed to function as app launchers. App Extension Programming Guide There is no direct communication between an app extension and its containing app; typically, the containing app isn’t even running while a contained extension is

iOS 10 iMessage app extension: how do i calculate the height of the extra tall navbar

元气小坏坏 提交于 2020-01-09 12:53:35
问题 I downloaded the Xcode 8 beta and was trying to play around with the iMessages app extension sdk but ran into an issue with their seemingly nonstandard nav bar height when i transition into the app's expanded view, my image with the following frame CGRect(x: 0, y: 0, width: 100, height: 100) ends up partially hidden behind the nav bar. i would like it to appear below the nav bar. i tried self.navigationController?.navigationBar.isTranslucent = false but it didn't work, which i guess makes

iOS 10 iMessage app extension: how do i calculate the height of the extra tall navbar

北战南征 提交于 2020-01-09 12:53:12
问题 I downloaded the Xcode 8 beta and was trying to play around with the iMessages app extension sdk but ran into an issue with their seemingly nonstandard nav bar height when i transition into the app's expanded view, my image with the following frame CGRect(x: 0, y: 0, width: 100, height: 100) ends up partially hidden behind the nav bar. i would like it to appear below the nav bar. i tried self.navigationController?.navigationBar.isTranslucent = false but it didn't work, which i guess makes

How to send an imessage text with applescript, only in provided service?

孤人 提交于 2019-12-31 07:55:11
问题 Can somebody show me how to send a message directly to the user of iMessage via Messages app? tell application "Messages" if service type of service of buddy whose name is ("Name here" is "iMessage") then set x to 1 if service type of service of buddy whose name is ("Name here" is "iMessage") then set x to 2 if service type of service of buddy whose name is ("Name here" is "iMessage") then set x to 3 send "Message" to buddy "mail of name" of service x end tell I need to send a message to an

How to send an imessage text with applescript, only in provided service?

瘦欲@ 提交于 2019-12-31 07:55:11
问题 Can somebody show me how to send a message directly to the user of iMessage via Messages app? tell application "Messages" if service type of service of buddy whose name is ("Name here" is "iMessage") then set x to 1 if service type of service of buddy whose name is ("Name here" is "iMessage") then set x to 2 if service type of service of buddy whose name is ("Name here" is "iMessage") then set x to 3 send "Message" to buddy "mail of name" of service x end tell I need to send a message to an

How to keep navigation bar from disappearing with MSMessagesViewController -> UIContainerView -> UINavigationController -> UITableViewController?

倖福魔咒の 提交于 2019-12-24 05:49:58
问题 I am trying to put a navigation controller with a table view controller within an iMessage app (iOS 10). This seems to work when I put the UINavigationController within an UIContainerView within the MSMessagesViewController . However, this breaks when in expanded view. The UINavigationBar that the controller has disappears. How can I remedy this, or am I taking the wrong approach? 回答1: Let me start with the assumption that you used view.addSubview to add your UITableViewController to the