diff --git a/README.md b/README.md index d180873..f6a8b48 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,15 @@ Include the entire thing as a CocoaPod by referencing it on GitHub or as a submo After installing LiveFrost, place `LFGlassView` in a view you’d like to blur and blurring will commence automatically. Use `LFGlassView` as any other `UIView`. + +## UserInteractionEnabled +By default userInteractionEnabled is NO, so touch events will be handled by the UIView underneath your LFGlassView. To prevent touch events from being sent to the view under your LFGlassView: + +``` +LFGlassView glass = [[LFGlassView alloc] init]; +glass.userInteractionEnabled = YES; +``` + ## License -LiveFrost is under the MIT license. \ No newline at end of file +LiveFrost is under the MIT license.