Changes for page Development-Frameworks

Last modified by Pascal Robert on 2010/09/13 00:35

From version 5.1
edited by Pascal Robert
on 2010/09/13 00:35
Change comment: There is no comment for this version
To version 7.1
edited by Pascal Robert
on 2010/09/13 00:35
Change comment: Migrated to Confluence 5.3

Summary

Details

Page properties
Parent
... ... @@ -1,0 +1,1 @@
1 +How-tos
Content
... ... @@ -1,6 +1,6 @@
1 1  == Overview ==
2 2  
3 -A Framework is Apple's mechanism for packaging and distributing shared functionality. Frameworks can contain not only code, but also Resources and Web Server Resources much like a full-blown WOA.
3 +A Framework is Apple's mechanism for packaging and distributing shared functionality. Frameworks can contain not only code, but also Resources and Web Server Resources much like a full-blown WOA.
4 4  
5 5  **Images deployed in a Framework**
6 6  
... ... @@ -25,7 +25,7 @@
25 25  Create a java file, MyFrameworkInitializer.java and initialize any classes in your framework in a static block in this class. Of course you can call the class whatever you want, just make sure you put the full class name, package and all in the .plist file.
26 26  
27 27  This is a hangover from NeXT days and may stop working if frameworks ever go away and WO switches to NORMAL java deployment. Basically the framework loader will reference every class declared as NSPrincipalClass? in this way. The neat part is your framework get's
28 -initialized w/o having to remember to do it yourself in th app constructor.
28 + initialized w/o having to remember to do it yourself in th app constructor.
29 29  
30 30  === Arturo PĂ©rez ===
31 31  
... ... @@ -39,4 +39,4 @@
39 39  
40 40  === King Chung Huang ===
41 41  
42 -Tip: I often have my Framework initializers create a worker object to listen for ApplicationWillLaunchNotification or ApplicationDidLaunchNotification. if I need to do initialization just before or after the WOApplication instance is constructed.
42 +Tip: I often have my Framework initializers create a worker object to listen for ApplicationWillLaunchNotification or ApplicationDidLaunchNotification. if I need to do initialization just before or after the WOApplication instance is constructed.