- 第一, 直接把demo中的
YYRandomCodes
文件夹拷贝到你的项目 - 第二, 使用
CocoaPods
安装,pod 'YYRandomCodes', '~> 0.1.0'
- 在需要使用的类中导入主头文件
import "YYRandomCodes.h"
即可
[self.view addSubview:self.randomCodes = ({
CGRect frame = CGRectMake(CGRectGetMaxX(self.textField.frame), 100, 80, 35);
self.randomCodes = [[YYRandomCodes alloc] initWithFrame:frame];
__weak typeof(self) weakSelf = self;
self.randomCodes.CurrentStrBlock = ^(NSString *currentStr) {
// 获取到当前的随机字符
weakSelf.inputCodeStr = currentStr;
};
self.randomCodes;
})];
// 示例, 设置圆角
[self.IBRandomCodes.layer setCornerRadius:3.0f];
[self.IBRandomCodes.layer setMasksToBounds:YES];
YYRandomCodes 使用 MIT 许可证,详情见 LICENSE 文件