2

我正在尝试向 a 添加一个NSFormatter对象NSTextField,因此我可以验证文本字段是否仅包含字母数字字符串。

所以我这样做:

  1. 我创建了一个新的SwiftmacOS 应用程序。
  2. 我添加NSTextField到视图控制器
  3. Formatter向视图控制器添加了一个自定义
  4. 我使用界面生成器将文本字段的格式化程序出口连接到格式化程序对象。

我创建这个类并分配给 Formatter 对象。

FormatterTextNumbers.h

#import <Foundation/Foundation.h>
@import AppKit;


NS_ASSUME_NONNULL_BEGIN

@interface FormatterTextNumbers : NSFormatter

@end

NS_ASSUME_NONNULL_END

FormatterTextNumbers.m

#import "FormatterTextNumbers.h"

@implementation FormatterTextNumbers

- (BOOL)isAlphaNumeric:(NSString *)partialString
{
  static NSCharacterSet *nonAlphanumeric = nil;
  if (nonAlphanumeric == nil) {
  nonAlphanumeric = [NSCharacterSet characterSetWithCharactersInString:@"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'. -"];
  nonAlphanumeric = [nonAlphanumeric invertedSet];
  }

  NSRange range = [partialString rangeOfCharacterFromSet:nonAlphanumeric];
    if (range.location != NSNotFound) {
      return NO;
    } else {
      return YES;
    }
}

- (BOOL)isPartialStringValid:(NSString *)partialString
            newEditingString:(NSString * _Nullable __autoreleasing *)newString
            errorDescription:(NSString * _Nullable __autoreleasing *)error {

  if ([partialString length] == 0) {
      return YES; // The empty string is okay (the user might just be deleting everything and starting over)
  } else if ([self isAlphaNumeric:partialString]) {
    *newString = partialString;
    return YES;
  }
  NSBeep();
  return NO;
}

您问,Objective-C如果我的项目使用Swift. 很简单:如果我使用创建类的子FormatterSwiftXcode将不会让我将该子类分配给Formatter对象。我需要创建一个Objective-C子类NSFormatter

说,当我运行项目时,文本字段消失了,我收到了这条消息,不管这意味着什么:

Failure1 [3071:136161] 无法在 (NSWindow) 上设置 (contentViewController) 用户定义的检查属性:*** -stringForObjectValue:仅为抽象类定义。定义 -[FormatterTextNumbers stringForObjectValue:]!

我删除了文本字段和 Formatter 对象之间的连接,应用程序运行良好。

4

1 回答 1

2

您必须定义该方法

来自 Apple 文档NSFormatter(实际上是半抽象的)

Summary

The default implementation of this method raises an exception.
Declaration

- (NSString *)stringForObjectValue:(id)obj;

实际上同样适用于

- (BOOL)getObjectValue:(out id _Nullable * _Nullable)obj forString:(NSString *)string errorDescription:(out NSString * _Nullable * _Nullable)error;
于 2019-12-20T11:07:50.330 回答