更简洁的代码版本是什么?

What would be the cleaner version of the code?

队友写了,

return ( jsonDict == nil ? nil : [jsonDict mutableCopy] );

Objective-C 中更清晰的代码版本是什么?

简直return [jsonDict mutableCopy];

如果 jsonDict 为 nil 则调用 mutableCopy 也会产生 nil