---
title: "How to change UITableView checkmark color in iOS?"  
description: "How to change UITableView checkmark color in iOS?"  
author: "Anonymous User"  
published: 2015-12-22  
updated: 2015-12-22  
canonical: https://www.mindstick.com/forum/33770/how-to-change-uitableview-checkmark-color-in-ios  
category: "iphone"  
tags: ["iphone", "ios", "objective c"]  
reading_time: 1 minute  

---

# How to change UITableView checkmark color in iOS?

I want to change checkmark [color](https://www.mindstick.com/articles/77/how-to-split-form-background-color-in-c-sharp) of our [table view](https://www.mindstick.com/forum/33654/send-table-view-cell-value-on-button-action-in-ios) in our [iPhone application](https://www.mindstick.com/forum/23139/can-i-embed-a-custom-font-in-an-iphone-application).\
I have tried to [search](https://www.mindstick.com/articles/65368/best-smo-services-company-in-hyderabad-improve-search-rankings) but don't find any better solution.\
Please help me.

## Replies

### Reply by Tarun Kumar

I read the Apple's documentation and found that there is no public way to change the color of the checkmark.\
So, in my according you can do it with an image. To do it, just set the accesoryView property of the cell to a UIImageView containing a checkmark of the correct color.\
here is the code:

```
UIImageView *checkmark = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"checkMarkName.png"]];cell.accessoryView = checkmark;[checkmark release];
```


---

Original Source: https://www.mindstick.com/forum/33770/how-to-change-uitableview-checkmark-color-in-ios

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
