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
My project is nonARC.
After integration STTwitter I have crash reports on users only with ios8 + iphone6 (on ios8(and lower) + iphon5s(and lower) its OK).
I have Warning on STTwitter/STTwitterOAuth.m
Warning:(658, 23) '__bridge_transfer' casts have no effect when not using ARC
And I enable ARC for this file using -fobjc-arc - is it correct?
I read that "__bridge_transfer moves a non-Objective-C pointer to Objective-C and also transfers ownership to ARC".
May be replace
NSString *uuid = (__bridge_transfer NSString *)(CFUUIDCreateString (kCFAllocatorDefault, cfuuid));
with
NSString *uuid = (__bridge NSString *)(CFUUIDCreateString (kCFAllocatorDefault, cfuuid));
The text was updated successfully, but these errors were encountered:
My project is nonARC.
After integration STTwitter I have crash reports on users only with ios8 + iphone6 (on ios8(and lower) + iphon5s(and lower) its OK).
I have Warning on STTwitter/STTwitterOAuth.m
Warning:(658, 23) '__bridge_transfer' casts have no effect when not using ARC
And I enable ARC for this file using -fobjc-arc - is it correct?
I read that "__bridge_transfer moves a non-Objective-C pointer to Objective-C and also transfers ownership to ARC".
May be replace
NSString *uuid = (__bridge_transfer NSString *)(CFUUIDCreateString (kCFAllocatorDefault, cfuuid));
with
NSString *uuid = (__bridge NSString *)(CFUUIDCreateString (kCFAllocatorDefault, cfuuid));
The text was updated successfully, but these errors were encountered: