1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-07-14 16:30:34 +03:00
Powerful and easy-to-use vector graphics Swift library with SVG support
Go to file
2021-10-04 17:58:51 +07:00
Dependencies/SWXMLHash #769 Update SWXMLHash 2021-10-04 17:50:17 +07:00
Example Perform requested api changes 2020-08-06 17:21:42 +07:00
Example-macOS Examples fixes 2019-03-26 18:51:43 +06:00
Macaw.xcodeproj #769 Update SWXMLHash 2021-10-04 17:50:17 +07:00
MacawTests Regenerate PNG tests 2020-06-16 15:41:48 +07:00
Source Update indents 2021-10-04 17:58:51 +07:00
.gitignore Update .gitignore 2019-12-09 16:59:31 +07:00
.swift-version 0.9.7 release 2020-07-30 15:58:37 +07:00
.swiftlint.yml swiftlint tweaks 2018-04-04 17:59:28 +03:00
.travis.yml Change device used for Travis build 2020-06-09 22:33:20 +07:00
Cartfile Add missing Carthage support 2019-02-07 08:46:32 +02:00
Cartfile.resolved Add missing Carthage support 2019-02-07 08:46:32 +02:00
demo.gif Update README.md 2019-08-21 15:18:58 +07:00
header.png Update README.md 2019-08-21 15:18:58 +07:00
LICENSE Update license 2016-09-02 15:26:58 +07:00
logo.png Use raster logo instead. 2016-09-02 15:15:46 +07:00
macaw-logo.svg Move SVG logo to original state 2016-09-02 15:18:19 +07:00
Macaw.podspec 0.9.7 release 2020-07-30 15:58:37 +07:00
Package.swift Add Package.swift 2019-12-09 16:57:36 +07:00
README_zh.md 0.9.7 release 2020-07-30 15:58:37 +07:00
README.md Remove "who is using Macaw" section 2020-09-09 17:35:52 +07:00

Macaw

Powerful and easy-to-use vector graphics Swift library with SVG support


We are a development agency building phenomenal apps.




CI Status Version Carthage Compatible License Platform

What is Macaw?

Macaw is a powerful and easy-to-use vector graphics library written in Swift.

It's simple

Get started with Macaw in several lines of code:

class MyView: MacawView {

	required init?(coder aDecoder: NSCoder) {
		let text = Text(text: "Hello, World!", place: .move(dx: 145, dy: 100))
		super.init(node: text, coder: aDecoder)
	}

}

It has SVG support

Include Scalable Vector Graphics right into your iOS application:

It's powerful

Affine transformations, user events, animation and various effects to build beautiful apps with Macaw:

Motivation

Modern designs contain tons of illustrations and complex animations. Mobile developers have to spend a lot of time on converting designs into native views that will be resizable for different screens. With Macaw you can reduce development time to a minimum and describe all graphics in high level scene elements. Or even render SVG graphics right from your design tool with Macaw events and animation support.

Resources

Docs

We're working hard to provide full documentation. Currently you can take a look at the following docs:

Posts

Examples

Macaw-Examples is a repository where you can find various usages of the Macaw library from simple charts to the complex periodic table.

Requirements

  • iOS 9.0+
  • Mac OS X 10.11+
  • Xcode 7.3+

Installation

CocoaPods

To install it, simply add the following line to your Podfile:

pod "Macaw", "0.9.7"

Carthage

github "Exyte/Macaw" ~> 0.9.7

Building from sources

To build Macaw from sources:

  • clone the repo git@github.com:exyte/Macaw.git
  • open terminal and run cd <MacawRepo>/Example/
  • run pod install to install all dependencies
  • run open Example.xcworkspace/ to open project in the Xcode

Change Log

You can find list of all changes by version in the Change Log

License

Macaw is available under the MIT license. See the LICENSE file for more info.