0
whatsappで自分のアプリを共有するコードを作成しました。問題は、共有リンクがiosからAndroidの携帯電話に送信され、URLリンクとテキストがすべてAndroidの電話のwhatsappチャットボックスにプレーンテキスト形式で強調表示されたリンクとURLなしで表示される場合です。 これを修正できますか?どうやって?iOS:目的のC言語を使用したアプリの共有URL
NSString *urlString = [NSString stringWithFormat:@"%@", APP_SHARE_URL];
NSString *initialText1 = [NSString stringWithFormat:@"Hey I am using App: %@\n%@",urlString, profileModel.name];
NSCharacterSet *set = [NSCharacterSet URLHostAllowedCharacterSet];
NSString *whatsappString = [NSString stringWithFormat:@"%@", [[NSString stringWithFormat:@"%@", initialText1] stringByAddingPercentEncodingWithAllowedCharacters:set]];
NSURL *whatsappURL = [NSURL URLWithString:[NSString stringWithFormat:@"whatsapp://send?text=%@", whatsappString]];
if ([[UIApplication sharedApplication] canOpenURL:whatsappURL]) {
[[UIApplication sharedApplication] openURL:whatsappURL];
}
else {
[self showMessage:@"Unable to open WhatsApp"];
}