Questions tagged [imessage-extension]

iMessage Extensions consist of apps and sticker packs allowing for interactive and expressive experiences in iMessage conversations.

Documentation

233 questions
1
vote
1 answer

Custom fonts not working with iMessage Extension in iOS 10

I am developing iMessage Extension, in which i need custom font same i used in its container application. In iOS App custom fonts working fine. But in iMessage Extension it accessible in Interface builder but when display in output there is no…
technerd
  • 14,144
  • 10
  • 61
  • 92
0
votes
0 answers

How do I Add a iMessage Sticker Pack to Flutter App

I have a imessage sticker pack and an existing ios app. I used flutter for the ios app. How do I make it so that when I download the ios app the imessage stickers come with it?
0
votes
1 answer

In a SwiftUI iMessage Extension, is there a way to embed a photo picker rather than a modal?

I'm building a swift iMessage extension where a user picks images from their camera roll. I'd like to show their camera roll in the collapsed message view so that users can select their photos without needing to expand the iMessage Extension to…
0
votes
0 answers

Is it possible to alter and read messages in iMessage via an iOS app?

I have an idea for an iMessage app, but it requires the following: ability to read the current user message and replace the text (specifically only when the app is clicked in the iMessage toolkit) ability to add an additional option for user to…
user129393192
  • 797
  • 1
  • 8
0
votes
0 answers

Transparent image in iMessage MessageExtension iOS

I'm working on a MessageExtension app and trying to send transparent images through imessage. However when I add the image to the message, the image loses its background transparency and is filled in with a solid white. is there a way to mitigate…
0
votes
0 answers

How to create and transition between view controllers for an iMessage App using UIKit

I am trying to make an iMessage app. This app needs two views, one for the login/signup and one for the actual use. I am having difficulty figuring out how to have two view controllers for the iMessage app and switch them based on if the user is…
0
votes
0 answers

iMessage App Extention : Active conversation is not getting for draft

self.activeConversation!.insertText(newMessage) { error in if let error = error { print(error) } } Unable to get the Active conversation for draft messages as method is not getting called.
0
votes
1 answer

iMessageApp - MessagesViewController is not in the view hierarchy

I work on the iMessage App and stumbled upon this nasty bug. I would really appreciate the power of the community. Did anyone manage to solve it? A clear description of the problem: I work on a Standalone iMessage App. When the iMessage app is…
Roma Kavinskyi
  • 268
  • 4
  • 12
0
votes
1 answer

Load stickers from the Server and show in iMessage app

I am starting work on a Sticker pack application. I created a new project and selected the iMessage application. My requirements are: Download the stickers from the Server and show them in CollectionView. The user should tap on the Sticker and add…
Irfan Saeed
  • 123
  • 2
  • 12
0
votes
1 answer

MessageExtension App usage description error but I have the key in my Info.plist

I'm trying to build an messageExtension app and I want it to take a picture using the iphone camera. I know that I need to add the NSCameraUsageDescription in my Info.plist file and I have done that. I have tried to something similar with a normal…
0
votes
0 answers

MessageExtension returned a NSURLErrorDomain when requesting the server

I'm developing iOS message extension to filter the unwanted message. The plugin needs a help from server to filter the message. However, the iOS returned the error NSURLErrorDomain while requesting the server. Based on the official document, I have…
kha
  • 349
  • 3
  • 18
0
votes
0 answers

Teams custom app apears only sometimes on store after publishing it

I have implemented a Message Extension using Teams Toolkit on VSCode. After deploying on Azure & publishing on Microsoft Teams for the organization, Im only able to see the app sometimes inside the app store. That means the app is sometimes…
0
votes
1 answer

Teams Toolkit: Search based Message Extension not returning Adaptive-Card

I kinda have an issue with the search-based Message Extension. When I debug locally, my app works fine. After deploying the messaging extension on Azure and testing it in the Teams app, I can search for specific queries. The Message Extension gives…
0
votes
1 answer

Adaptive card on Select Item event of Search Message Extension

I am trying to return an adaptive card when search result is selected in Search Message extension. Below is my class to return the card: import { IEntity } from '../model/IEntity'; import { Attachment, CardFactory } from "botbuilder"; export class…
0
votes
1 answer

Filter on Search Message extension

I am using Search Message extension to create my app, I also want a way to provide a filter to my user. I coudn't find a clear document if that is achievable. Is there any way to provide filters, similar to like this: Filter on Search Message…