有人可以解釋什麼位置和長度代表NSRange。 如果我用它在這方面使用NSRange rangeOfString
NSRange range = [self.display.text rangeOfString:@"."];
if(range.location == NSNotFound){
self.display.text = [self.display.text stringByAppendingString:@"."];
什麼位置代表,可以有人解釋該代碼。另外我在哪裏可以找到更多關於屬性的信息,例如位置>我在頭文件中找到它作爲NSUInteger,但它沒有描述實際位置。
[NSRange在docs](http://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Miscellaneous/Foundation_DataTypes/Reference/reference.html#//apple_ref/doc/uid/ 20000018-SW23) –