Changes between Version 1 and Version 2 of ObjectiveC/Naming
- Timestamp:
- 08/08/11 00:03:54 (23 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ObjectiveC/Naming
v1 v2 4 4 5 5 * `C'NSObject` - static type of objects of that class 6 * `P'NSObject` - `NSObject` pro perty (a type class – but we don't want to explicitly make every object an instance of that type class.6 * `P'NSObject` - `NSObject` protocol (a type class – but we don't want to explicitly make every object an instance of that type class). 7 7 * `o'NSObject` - class object of type Class(?) 8 8 * `s'alloc` - selector (what about the ones with arguments?) - or maybe `m'alloc` (for method) 9 9 10 I am think , we want to use some sort of prefix to avoid any name clashes with Haskell keywords or Prelude definitions right from the start.10 I am thinking, we want to use some sort of prefix to avoid any name clashes with Haskell keywords or Prelude definitions right from the start. 11 11
