当我转到append
的第一个标签时,我会弹出所有const arr = [
{label: 1, value: "One"},
{label: 2, value: "two"}
];
const res = []
for (let obj of arr) {
res = [...res, obj.value]
}
console.log(res)
。 UIViewController
的{{1}}的文档是:
UITabBar
返回值:一组视图控制器,代表从堆栈中弹出的项目。
但是我总是得到一个空返回值(即使我确定会有VC弹出)。我至少应该得到一个空数组,但是我将得到null。
文档或操作员错误?
我很有趣,知道正在使用UINavigationController
的人获得的返回值(即使未使用)。