Giter Site home page Giter Site logo

basisapple's Introduction

BasisApple

Haxe Native Apple Development

This haxelib is used by the Basis haxelib https://github.com/Randonee/Basis

This project uses hxcpp and CFFI to allow the use of native Apple UI components.

Installation

  1. Install BasisApple haxelib with instructions found here: https://github.com/Randonee/Basis
  2. Install xcode
  3. Install xcode command line tools

Running the Example

  • First download and install from trunk
  • Then, from the example directory run the command: haxelib run basis build.basis ios

Documentation

For the most, part Apple's documentation can be used. Differences are outlined bellow.

Deleting Objects

You must call destroy on any basis object you create and want to remove. Because references to objects are stored so communication between hxcpp and objc is possible, objects are not removed until you call their destroy() method.

Method Names

Method names are a combination of the selector name and all argument descriptors. For example:

The selector:

- (void)setLeftBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated

would become:

setLeftBarButtonItemAnimated(item:UIBarItem, animated:Bool):Void

Delegates and Data Sources

You can not set delegates the same way you can in cocoa. Rather than set a delegate object you would set individual handler function. For example, UITableView handlers would be set like this:

var table:UITableView = new UITableView();
table.dataSource.titleForHeaderInSectionHandler = titleForHeaderInSection;
table.dataSource.numberOfSectionsInTableViewHandler = numberOfSectionsInTableView;
table.dataSource.numberOfRowsInSectionHandler = numberOfRowsInSection;
table.dataSource.cellForRowAtIndexPathHandler = cellForRowAtIndexPath;
table.delegate.didSelectRowAtIndexPathHandler = didSelectRowAtIndexPath;

private function titleForHeaderInSection(tableView:UITableView, section:Int):String
{
	return "Section Title";
}

... the rest of the functions would follow.

Events

Events are quite a bit deferent than in cocoa. In cocoa you would use NSNotificationCenter or use addTarget on a specific class. With BasisApple you use addEventListener. To listen to a touch event on a button you would do the following.

var sampleButton:UIButton = UIButton.buttonWithType(UIButton.UIButtonTypeRoundedRect());
sampleButton.addEventListener(UIControl.UIControlTouchUpInside(), onButtonTouchUp);

private function onButtonTouchUp(object:IObject, type:String):Void
{
	trace("button touched");
}

Event type constants have the same name as used in cocoa and are defined in the same classes (UIControlTouchUpInside is defined in UIControl.hx)

License:

Copyright (c) 2013 Basis Contributors
Unless indicated otherwise, this code is provided under a MIT-style license. 

Permission is hereby granted, free of charge, to any person obtaining a 
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Bitdeli Badge

basisapple's People

Contributors

randonee avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.