Is it possible to change how radius of the grouped UITableView? The rounded corners are way to drastic for my design.
Is it possible to change how radius of the grouped UITableView? The rounded corners
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I believe that the only way to do this is to provide your own background images for your table cells. You can provide 3 images to have a rounded feel to the
UITableViewlike Apple Does.in
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPathset the cell’s backgroundView to a
UIViewwith the image you want based on the cell index. This will allow you to set the Top, Middle and Bottom.This is a pretty good article
http://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html
just be sure to
dequeueReusableCellWithIdentifier: