__unsafe_unretained
typedef struct OFBragDelegateStrings
{
NSString* prepopulatedText;
NSString* originalMessage;
} OFBragDelegateStrings;
to
typedef struct OFBragDelegateStrings
{
__unsafe_unretained NSString* prepopulatedText;
__unsafe_unretained NSString* originalMessage;
} OFBragDelegateStrings;
ARC forbids Objective-C objects in structs or unions
原文:http://www.cnblogs.com/cxchanpin/p/7221784.html