0
我的應用程序中有三種不同的視圖。每次啓動應用程序時都會加載一個本地xml文件。所有這三個視圖都可以訪問這個xml。加載XML一次,並在flex中的所有視圖中訪問它
我寫了一個函數來加載主視圖(onCreationComplete)內的文件。但是,首先,它不能在其他兩個視圖中訪問;其次,只要主視圖處於鎖定狀態,它就會執行onCreationComplete方法並反覆加載文件。
我需要的是:
1. load the xml only when the application is launched // once
2. access the file in all views
問候,