有没有办法在运行时更新 Flex 中的根视图标题?
我尝试了一些类似的东西:
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" title="{title}" activate="populateTitle()">
和
function populateTitle () {
title = "updated!";
}
...但标题没有更新!