Skip to content

Instantly share code, notes, and snippets.

View 0xKayvan's full-sized avatar
💻
In code we trust.

Kayvan Nouri 0xKayvan

💻
In code we trust.
  • Mordor
View GitHub Profile
@0xKayvan
0xKayvan / gist:827d130de6a9c89b8345
Created April 24, 2015 16:06
uiTextView placeholder trick
-(void) viewDidLoad{
[textView setDelegate:self];
}
-(void) textViewDidBeginEditing:(UITextView *)textView{
if ([textView.text isEqualToString:@"placeholder text here..."]) {
textView.text = @"";
textView.textColor = [UIColor blackColor]; //optional
}
[textView becomeFirstResponder];
@0xKayvan
0xKayvan / gist:121df87fce9485ac4698
Created April 15, 2015 21:55
address of gitlab conf
/etc/gitlab/gitlab.rb
@0xKayvan
0xKayvan / gist:7577d4206b983251b13a
Created April 13, 2015 09:00
hide empty cells at the bottom of UITableView
self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];