请补全以下代码生成指定长度,内容随机的字符串。
@implementation NSString (RandomString)
#pragma mark - Random String
+ (NSString *)randomStringWithLength:(NSUInteger)length
{
static char const possibleChars[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 !@#$%^&*()_-/?;:+=[]|~<>";
// Write your code here
}
@end 