ILTranslucentView
ILTranslucentView copied to clipboard
Subclass of UIView that enables native iOS 7 blur effect.
I'm trying to install using cocoapods. I need to support iOS 7 hence I can't use `use_frameworks!`. Due to that, cocoapods fails because of the swift file included in source...
Any plans for a update to support Auto Layout?
Pods/ILTranslucentView/Source/ILTranslucentView.swift:231:24: Property 'subviews' with type 'Array' cannot override a property with type '[UIView]'
The objective c files have been removed because they are not necessary anymore. You can use "#import ILTranslucentView-Swift.h" to import to Swift pod in a Objective C project.
This is what I did: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. ILTranslucentView *translucentView = [[ILTranslucentView alloc] initWithFrame:CGRectMake(0, 0, 250, 150)]; [self.view addSubview:translucentView];...