Restrict NSTextField input to numeric only? NSNumberformatter

后端 未结 5 1571
心在旅途
心在旅途 2020-12-06 02:44

I\'m just getting started up with Mac App Development and so far everything is good well, I\'m just having problems trying to get a NSTextField to only accept numbers for th

5条回答
  •  一生所求
    2020-12-06 03:15

    Subclass NSNumberFormatter and implement this method:

    - (BOOL)isPartialStringValid:(NSString **)partialStringPtr
           proposedSelectedRange:(NSRangePointer)proposedSelRangePtr
                  originalString:(NSString *)origString
           originalSelectedRange:(NSRange)origSelRange
                errorDescription:(NSString **)error
    

提交回复
热议问题