UISwitch *myswitch = [[UISwitch alloc] initWithFrame:CGRectMake(230, 10, 128, 28)];
if([username isEqualToString:nowname]){
[myswitch setOn:YES];
}
myswitch.tag = indexPath.row;
[myswitch addTarget:self action:@selector(switchPress:) forControlEvents:UIControlEventValueChanged];
[cell addSubview:myswitch];