stk
stk

Reputation: 6471

Is it possible to embed a Tweet / Twitter Card natively in iOS?

Is it possible to embed a Tweet / Twitter Card (https://dev.twitter.com/docs/cards/types/summary-card) natively in an iOS App? All I could find was an API that delivers the data:

https://api.twitter.com/1.1/statuses/show.json?id=210462857140252672

See https://dev.twitter.com/docs/api/1.1/get/statuses/show/%3Aid

Then I would be able to construct my own UIView representing a Twitter Card, but isn´t there something 'official' to display Twitter Cards in a more native way than HTML in apps?

Cheers, Marc

Upvotes: 2

Views: 716

Answers (1)

gdub
gdub

Reputation: 852

Twitter offers an official way to display tweets natively in iOS through TwitterKit: https://dev.twitter.com/twitter-kit/ios/show-tweets

Upvotes: 1

Related Questions