请补全以下代码生成指定长度,内容随机的字符串。 @implementat...
发布于 2022-03-03 17:00:30
请补全以下代码生成指定长度,内容随机的字符串。
@implementation NSString (RandomString) #pragma mark - Random String + (NSString *)randomStringWithLength:(NSUInteger)length { static char const possibleChars[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 !@#$%^&*()_-/?:+=[]|~<>" // Write your code here } @end
关注者
0
被浏览
42