Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ILTranslucentView.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ILTranslucentView'
s.version = '0.1'
s.version = '0.2'
s.license = 'MIT'
s.summary = 'ILTranslucentView is a little subclass of UIView that provide native iOS 7+ blur effect.'
s.description = 'ILTranslucentView is a little subclass of UIView that provide native iOS 7+ blur (translucent) effect. It can be used on all iOS devices in real time without any performance problems. It also supports smooth UIView animation of color, frame, alpha etc.'
Expand All @@ -11,4 +11,4 @@ Pod::Spec.new do |s|
s.source_files = 'Source'
s.requires_arc = true
s.ios.deployment_target = '7.0'
end
end
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ It can be used on all iOS devices in real time without any performance problems.
- use it as normal UIView but with additional methods/propertiers:

```objective-c
#import "ILTranslucentView-Swift.h"

ILTranslucentView *translucentView = [[ILTranslucentView alloc] initWithFrame:CGRectMake(0, 0, 250, 150)];
[self.view addSubview:translucentView]; //that's it :)

Expand All @@ -24,6 +26,8 @@ It can be used on all iOS devices in real time without any performance problems.
```

```swift
import ILTranslucentView

var view = ILTranslucentView(frame: CGRectMake(0, 0, 250, 150))
self.view.addSubview(view)

Expand Down
19 changes: 0 additions & 19 deletions Source/ILTranslucentView.h

This file was deleted.

298 changes: 0 additions & 298 deletions Source/ILTranslucentView.m

This file was deleted.

2 changes: 1 addition & 1 deletion Source/ILTranslucentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public class ILTranslucentView: UIView {
private var overlayBackgroundView : UIView?
private var initComplete = false

override init(frame: CGRect) {
public override init(frame: CGRect) {
super.init(frame: frame)
self.createUI()
}
Expand Down