Skip to content

Commit

Permalink
Fix typo in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
robbdimitrov committed May 18, 2014
1 parent ea534a6 commit f010492
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,17 @@ for (RDVTabBarItem *item in [[tabBarController tabBar] items]) {
}
```

#### Make the tab bar transparent
#### Make the tab bar translucent

`RDVTabBar` has `transparent` property which determines how it is going to be handled.
`RDVTabBar` has `translucent` property which determines how it is going to be handled.

```objective-c
RDVTabBar *tabBar = tabBarController.tabBar;

// After the tabBarController initialization
tabBar.translucent = YES;

// Customizing the tabBar background
// Customize the tabBar background
tabBar.backgroundView.backgroundColor = [UIColor colorWithRed:245/255.0
green:245/255.0
blue:245/255.0
Expand Down

1 comment on commit f010492

@aryansbtloe
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi
this is a great control.
..................................but i face one issue.
the issue is................................................
if i am using this tab bar controller............
and even if i was removing it after my use
neither tab bar controller nor its view controllers are released from memory.

.
.
.
.
after so much trial i found , the reason was

@interface RDVTabBar : UIView
@Property id delegate;

i fixed it by changing
@Property (nonatomic, weak) id delegate;

please verify my report and update this control ...so that others will not face this issue
..
thanks
Alok

Please sign in to comment.