Questions tagged [checkmark]
149 questions
0
votes
1 answer
Popover TableView is not showing a checkmark on selection (iOS7.1)
I have a button which when clicked shows a popover with a table view which is showing some list of data.
On selection of a table view row, I want to show a check mark on the right hand side of the cell, but the code is not working. Can someone help…

user1227928
- 831
- 1
- 12
- 27
0
votes
1 answer
How do clickable checkmark accessory and none accessory?
I have simple code in my TableViewController:
-(UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath{
if(debug == 1){
NSLog(@"Running %@ '%@'",self.class,…

krata
- 101
- 10
0
votes
1 answer
Checkmark checks the row but not the object
so i have two problems with the Checkmarks in UITableView with CoreData and NSUserDefault
If i create a new object in the tableview, it is unchecked. When I check this object, its check. So thats all right... but when I create 10 objects and check…

user255368
- 17
- 6
0
votes
1 answer
Retain Check Marks with Modal Segue
I am new to x-code and I was wondering: Is it possible to make check marks retain though you go through a modal segue?
I will check some boxes on my list:
But when I press done and then come back to the screen with a modal segue it appears as such:…

Caroline D.
- 21
- 5
0
votes
2 answers
Bug when I try to check only one cell in tableview
When I check the first cell after loading – nothing happens, I’m tapping over and over again – nothing happens. I can check other cells, the second, the third etc. and only after that I can check the first cell. This is my method:
-…

Alexander Yakovlev
- 512
- 5
- 25
0
votes
1 answer
Loading and saving data in plist from tableview with checkmarks
Can't understand how to save and load checked / unchecked tableview cells. For now, my code works for only checked cells, but when I take off the checkmark – all objects have removed from array, but I want to remove only unchecked object.
-…

Alexander Yakovlev
- 512
- 5
- 25
0
votes
1 answer
TableViewCell checkmarks not disappearing when tapped?
Here is my method in my delegate:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[self.tableView deselectRowAtIndexPath:indexPath animated:NO];
UITableViewCell *cell = [tableView…

Jared Gross
- 649
- 3
- 9
- 23
0
votes
0 answers
Add permanent checkmark to tableView-cell
my viewController contains a tableView where the user can add cells via coreData.
I defined the cells:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString…

user2650439
- 207
- 1
- 3
- 8
0
votes
1 answer
how to know which uitableviewcell is checkmarked in facebook friendpicker?
in my ios app,
i want to know indexPath for UITableViewCell which is checkmarked?
basically i am trying to limit friend selection to 3 friends
for that i disabled userinteraction for tableview if selection count is greater than 3. now i want to…

Ashish P
- 1,463
- 1
- 20
- 29
0
votes
1 answer
two row's are marked by one tap in UITableView selection list
i'm trying to do a selection list in UITableView but whenever i tap in a row, two row are marked. For example if i tap the first row it adds a checkmark to row = 0 and row = 11. I think the problem is caused by reuse of cells but i don't understand…

Manuel Ragazzini
- 919
- 1
- 10
- 24
0
votes
1 answer
iOS: How to keep selected/check marked cells in UITableView to stay after navigating back and forth in UINavigationController?
I have tab bar in which one tab has a UINavigationController that is assigned a root view controller which consists of a UITableView that drills down to more choices. After i select an item in my root view controller i am given another uitableview…

Sero Eskandaryan
- 129
- 14
0
votes
2 answers
Set value of variable after selecting row and add checkmark (xcode)
I'd like to do following: After clicking a row in a tableview, I want to set value of some variable and in the same time change the cell accessory type to checkmark. Here is my implementation file:
- (void)viewDidLoad
{
[super viewDidLoad];
…

TomasJ
- 289
- 8
- 21
0
votes
1 answer
UITableView cellForRowAtIndexPath checkmark accessory setting acting weird
Setup: I have a property called "_itemListArray(ivar)", that is set to a list of "Item(NSString itemName, NSString itemPrice)". I populate a UITableView with these items and the user can select multiple rows, displaying a checkmark on that row. The…

jgvb
- 304
- 5
- 16
0
votes
2 answers
RESET button to uncheck tableview
Can any one please tell a code for unchecking a entire check marks in uitableview using a button click?

fazil
- 57
- 1
- 8
0
votes
2 answers
Table View Checkmark if Task Complete
I'm working in Objective C. I have a UITableViewController with about 25 cells that push to a UIViewController. When the user hits back, I want to see if the user entered the correct data for the given cell. (I have a working bool , we'll call it…

user1530460
- 80
- 7