SnapKit/faq.md

29 lines
1.2 KiB
Markdown
Raw Normal View History

2015-04-16 20:10:40 +08:00
---
layout: default
id: faq
permalink: /faq/
---
## FAQ
#### CocoaPods won't let me install SnapKit into my iOS 7.0 project?
2015-04-16 20:10:40 +08:00
SnapKit doesn't use any iOS 8.0 specific APIs, but since Xcode does not support integrating Swift code without dynamic frameworks it cannot be integrated via a framework for iOS 7.0 deployments. You should instead embed the source code directly into your application.
2015-04-16 20:10:40 +08:00
2015-04-16 20:15:43 +08:00
#### Do you have any examples?
2015-04-16 20:10:40 +08:00
We're working on getting some great examples! Stay tuned.
2015-04-16 20:15:43 +08:00
#### What about Swift's operator overloading?
2015-04-16 20:10:40 +08:00
SnapKit's intention is to be simple and understandable to ensure new users and old alike can easily dive in and get going. While operator overloading may make the code a bit more concise it greatly reduces the readability.
2015-04-16 20:15:43 +08:00
#### Why not just use Interface Builder?
2015-04-16 20:10:40 +08:00
SnapKit is about building code based views and layouts. Interface Builder is fiddly and limiting when it comes to building constraints and is a nightmare for your source control change logs.
2015-04-16 20:15:43 +08:00
#### Who's behind all this?
2015-04-16 20:10:40 +08:00
* [Robert Payne](https://github.com/robertjpayne)
2015-04-16 20:53:52 +08:00
* [Jonas Budelmann](https://github.com/cloudkite)
* [Countless others](https://github.com/SnapKit/SnapKit/graphs/contributors)