My Blog 155 posts

notes & snippets
iOS 8 UITableView separator inset 0 not working
iOS 8 UITableView separator inset 0 not working

http://stackoverflow.com/questions/25770119/ios-8-uitableview-separator-inset-0-not-working

[cell setSeparatorInset:UIEdgeInsetsZero];
[cell setPreservesSuperviewLayoutMargins:NO];
[cell setLayoutMargins:UIEdgeInsetsZero];

[self.tableView setSeparatorInset:UIEdgeInsetsZero];
[self.tableView setLayoutMargins:UIEdgeInsetsZero];


http://stackoverflow.com/questions/22224700/change-color-of-inset-area-in-uitableview-separator
cell.backgroundColor = cell.contentView.backgroundColor;
sublimetext preferences
key map
[
{ "keys": ["super+shift+l"], "command": "reindent"}
]

settings
{
"ignored_packages": [],
"vintage_start_in_command_mode": true
}
mac - clear xattr and ACL
remove extended file attribute include sub folders
xattr -rc *

remove ACL include sub folders
chmod -RN *
1 2 3 4 5 6 7 8 9 10 »