我接受来自 aNSString
的随机数并将其传递给我正在创建的方法,该方法将仅捕获在.size
UITextField
string
我查看了NSString
类引用库,我发现唯一真正的选择看起来像我想要的那样是
- (void)getCharacters:(unichar *)buffer range:(NSRange)aRange
我以前使用过一次,但是使用了“不会改变”的静态参数,但是对于这个实现,我想使用根据传入字符串的大小而改变的非静态参数。
到目前为止,这是我创建的方法,它是NSString
从其他地方的 IBAction 传递的。
- (void)padString:(NSString *)funcString
{
NSString *myFormattedString = [NSString stringWithFormat:@"%04d",[funcString intValue]]; // if less than 4 then pad string
// NSLog(@"my formatedstring = %@", myFormattedString);
int stringLength = [myFormattedString length]; // captures length of string maybe I can use this on NSRange?
//NSRange MyOneRange = {0, 1}; //<<-------- should I use this? if so how?
}