You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[STHTTPRequest startAsynchronous] uses the sharedContainerIdentifier property of NSURLSessionConfiguration which is only available in iOS 8 and later. This results in a crash when using STTwitter on iOS 7.
Since STTwitter says it supports iOS 7, I consider it is a bug.
A simple solution is to wrap the call in a respondsToSelector: check like so :
[STHTTPRequest startAsynchronous]
uses thesharedContainerIdentifier
property ofNSURLSessionConfiguration
which is only available in iOS 8 and later. This results in a crash when using STTwitter on iOS 7.Since STTwitter says it supports iOS 7, I consider it is a bug.
A simple solution is to wrap the call in a
respondsToSelector:
check like so :The text was updated successfully, but these errors were encountered: