Skip to content

karstenlitsche/OOUIKit

 
 

Repository files navigation

OOUIKit

Description

This repository contains object oriented classes that requires the UIKit.framework.

Object orientation

All objects follow these rules:

  • they are immutable, except
    • the 'Memory' objects, these are low level in memory stores
    • some bridge objects to the apple api
  • they implement a protocol that defines the api of the object
    • an object is only allowed to implement one protocol
    • only a decorator may implement a second one
  • they use dependency injection, but only protocols will be injected
  • they are final, except
    • the 'Wrap' objects, these objects are designed to derive for object compositions
  • they do not end to -Client, -Model, -er
  • they do not provide any optional access
    • no optionals in protocols
    • no optionals in public initializers
  • they fail early in case of misuse

Usage

Add it via carthage to your project dependencies.

Regenerate project

The xcodeproj can be generated by using Phoenx. However, there are following notes:

  • After recreation there are two schemes. You can remove the non-shared scheme. The shared scheme is required for carthage compatibility.

About

Basic objects for object oriented programming

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 99.7%
  • Makefile 0.3%