Questions tagged [checkmark]
149 questions
0
votes
2 answers
iPhone : How can we load a custom check mark image for row in tableview?
I want to show a custom checkmark and uncheckmark image for tableview cell when user select any row and when a new row is inserted cell is loaded with uncheckmark image.
Once I check the row then even after reloading table with new data I want to…

RayofHope
- 1,187
- 2
- 14
- 30
0
votes
2 answers
CheckedTextView Attributes ID and checkMark
Just start developing with android and think instead of reading a book a webinar could be better because a webinar could also teach me short ways and how an android developer thinks when writing the code but now got a problem…

Mehmet Noyan Aydin
- 289
- 1
- 4
- 15
0
votes
2 answers
Checkmark in UITableView Cell
I want Checkmark in particular TableView Cell.
So I have used code :
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
newRow = [indexPath row];
oldRow = [lastIndexPath row];
if (newRow != oldRow) {
…

Manann Sseth
- 2,745
- 2
- 30
- 50
0
votes
1 answer
UITableView with UISegmented control and checkmark accessory
I am a newbie in the world of Objective-C and iOS coding so I'll appreciate a little bit of help.
Here is my issue. I've got a UITableView with a UISegmentedControl. This one has 6 different segments which modify the content of the table by…

Yoann Lopez
- 33
- 5
-1
votes
1 answer
How can I replicate this tick mark on the thumbnail for an ecommerce website? Specifically, the tick on the top right
[
What's happening here is that when I click on a particular thumbnail, the tick appears on it. It's basically a label for an input field. How can i replicate something like this? What I need is when I click on a particular shoe thumbnail, a tick…

jaimish11
- 536
- 4
- 15
-1
votes
2 answers
How to update table view after adding checkmark to selected item?
I'm creating a checklist in a iOS view inside my Xamarin MvvmCross project. Everything works fine except showing a checkmark when an item is selected and removing the checkmark when an item is deselected.
Inside ViewDidLoad of my controller:
var…

iki93
- 21
- 6
-1
votes
1 answer
UITableView checkmark hide when scrolling
When I scroll the screen, the upper markings disappear. I've tried some solutions found here, but none worked ...
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell =…

Adalberto Zauli
- 1
- 1
-1
votes
2 answers
Have done all solution fro, but no use, not able to complete my check mark reusable?
I have one table view with check mark. when I do check mark one data in my table view my 20,21 data also automatically getting check mark i.e check mark cell reusable.
@interface ViewController ()
{
NSDateFormatter *formatter;
BOOL…

david
- 636
- 2
- 12
- 29
-1
votes
2 answers
First check mark hides when i started scrolling table
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell ==…

Steve
- 1,022
- 2
- 9
- 30
-2
votes
1 answer
Add multiple checkmark to cell in different sections and save their state in swift ios
In my app i have 5 sections with some data in it. what i want is to checkmark lets say 2 cell in section 1, then 3 cell in section 2 and so on at a time. The multiple selection in different sections in working and whatever cell is being checkmarked…
-2
votes
1 answer
excel - copy entire row upon radio button "check"
I am looking for the correct macro to program a radio button "checkmark" in A1 to, if checked, copy/share all following fields in that row 1 to another worksheet. I need that destination worksheet to complile a complete list of all items "checked"…

RDD3326
- 7
- 1
-3
votes
1 answer
How do i deselect my selected checkmark in viewController
import UIKit
class RightSideViewController: UIViewController, UITableViewDataSource, UITableViewDelegate,UITextFieldDelegate {
var tableView: UITableView!
var textField: UITextField!
var menuItems:[String]=["A","B","C","All"];
override func…

vaibhav
- 29
- 1
- 5
-5
votes
1 answer
Create checkmark for a Table View with a detail segue?
I would like to create an app with a list of TODO items. Each TODO should have a functional checkmark/checkbox on the left side of the cell. If I click on the right side of the TODO then I would like to show its details.
I have create a Table View.…

Daniel
- 3,758
- 3
- 22
- 43
-6
votes
1 answer
Check mark to disable row swift
Sorry Im new to Swift and I wanted to add a check mark functionality to my mock app. How can I add a check mark that would disable the selected row and then enable it when the check mark is deselected? Disable as in the row is visible but not…

Ahmet
- 1
- 2