diff --git a/README.md b/README.md index ff483030..f4530eae 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 @@ -55,12 +55,6 @@ Import the module in your project: @import LNPopupController; ``` -Alternatively, you can import the umbrella header: - -```objective-c -#import -``` - ###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`.