Xcode仅显示记录器

时间:2020-07-05 04:59:28

标签: xcode

我不确定发生了什么,但是我的Xcode仅显示记录器:

enter image description here

如果我单击任何const [model, setModel] = useState<Expirable>({ expiredAt: new Date((new Date).getTime() + 20000) }); const [isModelExpired, setIsModelExpired] = useState(false) const [expirationTimeoutId] = useState(() =>{ return setTimeout(() =>{ setIsModelExpired(true) }, model.expiredAt - Date.now()) }); // You should clear timeout when the component is unmounted useEffect(() =>{ return () => clearTimeout(expirationTimeoutId) },[]) return ( { isModelExpired ? ( <Text>Expired</Text> ) : ( <Text>Not Expired</Text> )} ); 文件,它将不会显示。

我正在运行.swift

知道什么问题吗?

1 个答案:

答案 0 :(得分:0)

查看> 调试区域> 隐藏调试区域