Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changes between Version 6 and Version 7 of ObjcBridge/BridgeInternals

Show
Ignore:
Author:
doob (IP: 82.182.147.240)
Timestamp:
01/21/10 13:08:35 (14 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ObjcBridge/BridgeInternals

    v6 v7  
    22 
    33=== Introduction === 
    4 To be able to understand how the bridge works it is a good idea to first look more closely how Objective-C works under the hood. The Objective-C runtime provides a bunch of C functions that basically allows you to do everything you can do in Objective-C. Creating classes, instances, call methods an so on. Since D can call C functions the bridge uses these functions to interact with Objective-C.  
     4To be able to understand how the bridge works it is a good idea to first look more closely on how Objective-C works under the hood. The Objective-C runtime provides a bunch of C functions that basically allows you to do everything you can do in Objective-C. Creating classes, instances, call methods an so on. Since D can call C functions the bridge uses these functions to interact with Objective-C.  
    55 
    66Suggested further readings: