Questions tagged [imessage]

iMessage is an instant messenger service developed by Apple Inc.

iMessage allows users to send texts, documents, photos, videos, contact information, and group messages over Wi-Fi, 3G or LTE to other iOS or OS X users, thus providing an alternative to standard SMS/MMS messaging for most users with devices running iOS 5 or later.

473 questions
4
votes
1 answer

Adding Sticker Pack to existing iOS app

How do I add a sticker pack extension to an existing app? I want the user to install my app, then have access to the sticker pack as a bonus. I've tried: Adding a sticker pack extension target to my project, when I build that target it opens in…
Hbombre
  • 111
  • 1
  • 7
4
votes
3 answers

How to build a URL by using Dictionary in Swift

So I am messing around with the iMessages Framework, and in order to send data to another user the data must be sent as a URLComponents URL. However I can't figure out how to send a dictionary to use as the messages.url value. func…
JUSDEV
  • 731
  • 1
  • 7
  • 22
4
votes
0 answers

Is there any way a Unity3D View can be integrated in iMessage Extension App View?

There are many tutorials available showing how to integrate a Unity view in iOS app (or a view in…
Anshul Jhawar
  • 137
  • 1
  • 9
4
votes
1 answer

What Analytics service works with iOS 10 for iMessage apps/extension?

I need to integrate Analytics for my iMessage app. Installed Fabric SDK in the app but it seems that events are not really being sent to the service. Any workaround? any other service I could use?
Idan
  • 9,880
  • 10
  • 47
  • 76
4
votes
1 answer

Change constraints of UINavigationBar in UINavigationController

Apple says in its Documentation: It is permissible to customize the appearance of the navigation bar using the methods and properties of the UINavigationBar class but you must never change its frame, bounds, or alpha values or modify its view…
Christoph
  • 702
  • 6
  • 16
4
votes
2 answers

iMessage Extension and In-App-purchase

I'm trying to create an extension for iMessage with InApp-Purchase feature. basically I created an iMessage application which create two target. Your AppTarget MessageExtension and each one has it's own bundle identifier. ( extension has a prefix…
Ali
  • 287
  • 1
  • 2
  • 13
4
votes
6 answers

Swift 3 iMessage Extension doesn't open URL

I am creating an iOS Application iMessage Extension. According to Example by Apple, I creating a message according to provided logic guard let url: URL = URL(string: "http://www.google.com") else { return } let message = composeMessage(url:…
Daumantas Versockas
  • 797
  • 1
  • 10
  • 29
4
votes
1 answer

MFMessageComposeViewController stops sms messaging

I'm using MFMessageComposeViewController in my iOS app. MFMessageComposeViewController *controller = [[[MFMessageComposeViewController alloc] init]; if([MFMessageComposeViewController canSendText]){ controller.body = text; …
4
votes
1 answer

Detect incoming SMS or iMessage without Jailbreak

In my app, I'm simply trying to detect an incoming SMS or iMessage. I don't need to know where it came from or its content, just that it came in. I've seen lots of jailbreak solutions. Is there a way to do this in iOS 6 without jailbreaking?
TheEnigma2112
  • 173
  • 1
  • 7
4
votes
1 answer

Create *. Mht-file (Web Archive)

Use the following representation of the function to generate a Web archive from a local html file function TLessonConstructor2.CreateMHT( const FileName : string):boolean ; var oMSG:IMessage; oConfig: IConfiguration; sFileName: string; …
Fatum
  • 41
  • 3
3
votes
1 answer

Using different views in a iMessage App through hiding and showing the views

I am coding an iMessage app at the moment. I have implemented 5 views into the messages view controller. I always want to show one and hide the other 4 depending on which state of the game I am in. I added a URL component to the message but I don't…
David
  • 45
  • 3
3
votes
0 answers

Firebase Dynamic Links Not Working on Apple iMessage (Flutter)

I have implemented dynamic links into a flutter app I am working on. They are working as expected on everything I have tested EXCEPT iMessage. What is odd is if I copy and paste the link from the share popup, the message appears and send correctly.…
Dennis Ashford
  • 872
  • 2
  • 7
  • 21
3
votes
1 answer

Firebase Dynamic Links on iMessage Displaying Additional Text (Flutter)

I'm currently incorporating Firebase Dynamic Links in Flutter to allow users to send training plans to one another. I shorten the URL before sending and the flow works as expected on most apps/messaging. However, on iMessage specifically, the sent…
greysongy
  • 73
  • 4
3
votes
1 answer

Error message on App Store Connect: Primary Locale couldn’t be saved - you must provide the required screenshots for each version in this language

Steps: Added “German” localization as a secondary language. Added all the localized text under "Prepare for submission". Added all the localized screenshots for iphone 6,5" iPhone 5,5" ipad 12,9" 3rd Gen ipad 12,9" 2nd Gen Selected "App…
3
votes
0 answers

How to open chat.db for reading

I'm trying to open Messages db (~/Library/Messages/chat.db) using SQLite3 lib: int rc = sqlite3_open_v2("/Users/username/Library/Messages/chat.db", &m_db, SQLITE_OPEN_READONLY, NULL); if (rc != SQLITE_OK) { fprintf(stderr, "Cannot open…
poldueta
  • 41
  • 1
  • 2