We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ive followed the example in the Readme but I cannot seem to get the rounded corners on a tableView cell:
Here is my code:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath]; cell.textLabel.text=self.titles[indexPath.row]; [cell configureFlatCellWithColor:[UIColor greenSeaColor] selectedColor:[UIColor cloudsColor]]; cell.cornerRadius = 5.f; //Optional [cell setCornerRadius:5.0f]; [cell setSeparatorHeight:2.0f]; // optional return cell;
}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Ive followed the example in the Readme but I cannot seem to get the rounded corners on a tableView cell:
Here is my code:
}
The text was updated successfully, but these errors were encountered: