Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
[̲̲̅̅L̲̅̅e̲o̲̅] committed Dec 27, 2015
1 parent a533f59 commit d1f0aaa
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The contents of the popup bar is built dynamically using the popup item objects

Generally, it is recommended to present the popup bar on the outermost container controller. So if you have a view controller container in a navigation controller, which is in turn contained in a tab bar controller, it is recommended to present the popup bar on the tab bar controller.

Check the demo projects for how to use the framework in various scenarios. It contains example in Swift and Objective C. **The demo project is only available for Xcode 7 and above, due to use of modern Swift syntax and Storyboard features. The framework is available for Xcode 6 as well. **
Check the demo projects for how to use the framework in various scenarios. It contains example in Swift and Objective C.

###Features

Expand All @@ -39,7 +39,7 @@ Add the following to your Cartfile:

###Manual

Drag the `LNPopupController.xcodeproj` project to your project, and add `LNNotificationsUI.framework` to **Embedded Binaries** in your project target's **General** tab. Xcode should sort everything else on its own.
Drag the `LNPopupController.xcodeproj` project to your project, and add `LNPopupController.framework` to **Embedded Binaries** in your project target's **General** tab. Xcode should sort everything else on its own.

##Using the Framework

Expand All @@ -55,12 +55,6 @@ Import the module in your project:
@import LNPopupController;
```

Alternatively, you can import the umbrella header:

```objective-c
#import <LNPopupController/LNPopupController.h>
```

###Popup Items

A popup item always reflects information about the view controller with which it is associated. The popup item should provide a title and subtitles to display when the view controller is the content controller of a popup bar. In addition, the item may contain additional buttons to display on the left and right side of the popup bar using `leftBarButtonItems` and `rightBarButtonItems`.
Expand Down

0 comments on commit d1f0aaa

Please sign in to comment.