Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshdholtz/ios-swift-test
https://github.com/joshdholtz/ios-swift-test
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/joshdholtz/ios-swift-test
- Owner: joshdholtz
- Created: 2014-06-03T03:05:28.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-06-03T03:38:41.000Z (over 10 years ago)
- Last Synced: 2024-10-11T10:33:05.829Z (about 1 month ago)
- Language: Swift
- Size: 181 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ios-swift-test
==============## Initial Thoughts
My initial thoughts of Swift are pretty positive. Syntax flows pretty nicely. Autocompletion already built into Xcode is pretty great (makes finding properites and methods that are different in Objective-C pretty easy to find).One "gotcha" I found was that I created another file called "LayoutOfRelativity.swift" and I didn't need to import it into my ViewController to used it - I wasted to some time trying to figure out how to import it.
### ViewController
A simple UIViewController that has a lable and button. The button is placed relative to the label using the [extension on UIView](#extension) I created
```swift
import UIKitclass ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Creating a label
var label : UILabel = UILabel(frame: CGRect(x: 0, y: 10, width: CGRectGetWidth(self.view.bounds), height: 40));
label.center = self.view.center;
label.textAlignment = NSTextAlignment.Center; // This is different
label.text = "Omg I set a label";
// Adding a label as a subview to the view
self.view.addSubview(label);
// Creating a button
var button : UIButton = UIButton(frame: CGRect(x: 0, y: 10, width: CGRectGetWidth(self.view.bounds), height: 40));
button.setTitle("Woah, press me!", forState: UIControlState.Normal)
button.setTitleColor(UIColor.redColor(), forState: UIControlState.Normal)
// Adding a button as a subview to the view
button.placeBelow(label, offset: 10); // Aligns button relative to label - LayoutOfRelativity.swift
self.view.addSubview(button);
}override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}}
```### Extension
```swift
import UIKitextension UIView {
func placeBelow(view : UIView, offset : CGFloat) {
self.frame.origin.y = CGRectGetMaxY(view.frame) + offset;
}
}
```