Skip to content

Commit

Permalink
Update example app and bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
isair committed Oct 6, 2015
1 parent 2e75718 commit 69b93ef
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ManualLayout.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ManualLayout'
s.version = '1.0.0'
s.version = '1.1.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Easy to use and flexible AutoLayout alternative for iOS 8+. Supports AsyncDisplayKit.'

Expand Down
4 changes: 2 additions & 2 deletions ManualLayout/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0.0</string>
<string>1.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<string>9</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
4 changes: 2 additions & 2 deletions SimpleExample/ExampleViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal final class ExampleViewController: UIViewController {
let subtitleLabel = UILabel(frame: CGRectZero)
let yinView = UIView(frame: CGRectZero)

override init() {
init() {
super.init(nibName: nil, bundle: nil)
titleLabel.attributedText = NSAttributedString(
string: "Hello World!",
Expand Down Expand Up @@ -51,7 +51,7 @@ internal final class ExampleViewController: UIViewController {
yinView.bottom2 = bottom
}

private func generateTextStyle(smaller: Bool = false) -> [NSObject: AnyObject] {
private func generateTextStyle(smaller smaller: Bool = false) -> [String: AnyObject] {
return [
NSFontAttributeName: UIFont.systemFontOfSize(smaller ? 14 : 18),
NSForegroundColorAttributeName: UIColor.blackColor()
Expand Down
4 changes: 2 additions & 2 deletions SimpleExample/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>1.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2</string>
<string>3</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
Expand Down

0 comments on commit 69b93ef

Please sign in to comment.