从预期返回非空值的方法返回 Nil
Posted
技术标签:
【中文标题】从预期返回非空值的方法返回 Nil【英文标题】:Nil returned from a method that is expected to return a non-null value 【发布时间】:2017-08-28 22:46:55 【问题描述】:我正在实施 UIKeyInput
、UITextInputTraits
和 UITextInput
,并且我需要实施:
- (NSArray *)selectionRectsForRange:(UITextRange *)range
return nil;
但是,在分析我的项目时,我得到:“从预期返回非空值的方法返回 nil”。
摆脱这种情况的正确方法是什么?我应该中止吗?
【问题讨论】:
“我应该终止程序吗”?这意味着什么?拔掉电脑上的插头? @matt 我改变了它,我的意思是说,我应该做一个 abort()。 @SerPounce 请检查我的答案。泰。 【参考方案1】:实际上,如果您查看标头源,则该方法附加了NS_ASSUME_NONNULL_BEGIN
标记。所以简而言之,selectionRectsForRange
变成了一个非空返回方法。
//
// UITextInput.h
// UIKit
//
// Copyright (c) 2009-2017 Apple Inc. All rights reserved.
//
#import <CoreGraphics/CoreGraphics.h>
#import <UIKit/UITextInputTraits.h>
#import <UIKit/UIResponder.h>
...
NS_ASSUME_NONNULL_BEGIN // <--- HERE!
..
- (CGRect)firstRectForRange:(UITextRange *)range;
- (CGRect)caretRectForPosition:(UITextPosition *)position;
- (NSArray *)selectionRectsForRange:(UITextRange *)range NS_AVAILABLE_ios(6_0);
所以你不能返回 null 或 nil。而是像这样返回一个空数组:
- (NSArray *)selectionRectsForRange:(UITextRange *)range
return @[];
【讨论】:
【参考方案2】:不要返回nil
。如果你没有
UITextSelectionRects 返回,返回一个空数组。
【讨论】:
有没有比将 NSArray 初始化为长度为 1 并返回它更简洁的方法? 长度不是 1。为空。 没关系,我刚刚做了:return [[NSArray alloc] init];return @[];
也许?以上是关于从预期返回非空值的方法返回 Nil的主要内容,如果未能解决你的问题,请参考以下文章