Tagged Questions
0
votes
2answers
51 views
Create Array in cellForRowInIndexPath
I'm trying to save an array of images that I retrieve asynchronously in the cellForRowInIndexPath method of the UITableViewController.
Unfortunately, the array is not fully populated or in incorrect ...
0
votes
1answer
24 views
populated nsmutable array returns empty array exception
I got a table where I check/uncheck cells .. I am not sure why but sometimes I am getting following exception:
'NSRangeException', reason: '*** -[__NSArrayI objectAtIndex:]: index 0 beyond bounds for ...
0
votes
1answer
12 views
“Beyond bounds” error in working with NSMutableArray
Trying desperately to find why it is that when I select a cell in my tableView and then scroll the table up and down when the cell is highlighted that the app crashes. It gives me a -[__NSArrayM ...
0
votes
0answers
35 views
Add CustomTableViewCell from data not work?
/** .h **/
IBOutlet UITableView *Table;
NSMutableArray *Currency;
NSArray *Datacell;
/** Create Custom array **/
Custom *usd = [Custom new];
usd.name = @"USD";
...
0
votes
2answers
26 views
Add/Edit/Move Custom TableViewCell?
**.h
IBOutlet UITableView *Table;
NSMutableArray *Currency;
NSArray *Datacell;
** Create Custom array
Custom *usd = [Custom new];
usd.name = @"USD";
usd.detail = @"United States Dollar";
...
0
votes
1answer
92 views
Using NSMutableArray for UITableviewcell
I am trying to use an NSMutableArray to build my tableview's datasource. The NSMutableArray is empty.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
...
0
votes
1answer
112 views
How to Add/Remove UITableViewCell when UISwitch is activated?
Here is the Video showing problem in action:
http://www.youtube.com/watch?v=vWznBUsppRg
I'm getting weird behavior with my Array when adding a cell to a section. I'm developing a mobilesubstrate ...
1
vote
2answers
62 views
Deleting objects within a for loop from a NSMutableArray
I am working with a UITableView and for each of the objects in the array that is the datasource for the UITableView, I am deleting them if they meet a certain if statement. My problem is that it only ...
0
votes
2answers
85 views
2 problms with numberOfRowsInSection and cellForRowAtIndexPath
I set a NSMutableArray in viewontrolller.m
barcodeArray = [[NSMutableArray alloc] init];
in viewcontroller.h like this:
@interface SecondViewController : UIViewController <UITableViewDelegate, ...
0
votes
4answers
100 views
Need to insert objects into an NSMutableArray based on cells selected in UITableView in iOS
I have a UITableViewController that has a UITableView whose cells have a button attached to them via the accessoryView. These buttons can be selected/deselected when the user clicks on them. The ...
0
votes
1answer
86 views
UITableView deleteRowsAtIndex & datasource troubles
Happy 14th Baktun everybody!
This thing has been bugging me for a while, and I've googled to and fro, and also checked SO for an answer, but I just can't seem to grasp the answers and apply it to my ...
0
votes
4answers
79 views
iOS UITableView CheckMark Appearing on Every Row
I'm trying to get the cells in my app to only display a checkmark on the rows whose title matches words in an NSMutableArray that is stored in NSUserDefaults. My issue right now is that it is showing ...
1
vote
1answer
107 views
Split NSArray into NSString
My app has a TableView with a list of blog articles, sorted by day. When an article's row is selected, it adds the title of the article into a NSUserDefault NSMutableArray. When the view is ...
0
votes
1answer
54 views
How to set textlabels of UITableView cells
In my app, I have a map that allows the user to drop pins onto the map. The pins geocode the address and set the address as their title. I made it so that the annotations are stored in an array when ...
2
votes
1answer
61 views
Getting Data from an Array in a Previous View Controller, Put it in Another TableViewController
I have 2 TableViewControllers. When the user taps a UIBarButtonItem, It saves the text from a UITextField, runnameField, in SaveViewController. It should take runnameField's text and put it in an ...
0
votes
3answers
171 views
NSMutableArray removeObjectAtIndex crashes on second execution
I have a tableview with a number of rows that i want to be able to delete. The data that populates the tableview is stored in an NSMutableArray. To delete the data on one row i call:
- ...
1
vote
1answer
206 views
How to add multiple pictures to custom tableviewcells with tag or identifier
I want to add pictures from an NSMutableArray to custom cells in a tableview. There will be four or more images in every cell. So here's my problem:
If I refer to indexPath.row the custom cells would ...
0
votes
1answer
68 views
TableViewCells and Array of Dictionaries
I am having trouble understanding how to populate my table with all the dates. returns only the day 9-1-2012 not 8-31-2012. I have tried a few things like using my days and slots in ...
2
votes
4answers
96 views
Use DidSelectRowAtIndexPath to change a NSMutableArray
I thought I figured out myself how to do this question, but it won't work. The code I used:
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
...
0
votes
1answer
111 views
Why does my UITextField always return the last value in my array?
static NSString *cellIdentifier = @"Cell";
NSMutableArray *fields=[[NSMutableArray alloc] init];
MDSpreadViewCell *cell = [aSpreadView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == ...
0
votes
3answers
333 views
UILabel in UITableViewCell to make a customised cell without making separate class
In my table view cell i need to display the contents of my array elements in a single cell and if i insert any new contents the previous contents are not to be overwritten.The previous content and my ...
0
votes
1answer
82 views
Populating UITableView cells
Ok so I have wrote some code in this function:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
NSLog(@"tableviwcell is getting called");
...
0
votes
1answer
96 views
How to add data to an array from custom uitableviewcell's textfield after editing done
I'm creating customUiTableViewCells in which each has a textfield in a uitableview in which every section is different to each other .In one section I can add and delete any no.of cells.While ...
0
votes
2answers
182 views
Adding UITableViewCell with a UITextField upon pressing a UIBarButtonItem
I am very new to IOS development and Objective-C as i have just come from a mostly Java background. I have quite frankly searched everywhere on the web to find the answer to my question but nobody as ...
0
votes
1answer
83 views
Empty Nsmutable Array Iphone [duplicate]
Possible Duplicate:
Images in Uiscroll cell populated by mysql database
-(void)getItems
{
NSString *root = URL
NSURL *url = [NSURL URLWithString:[NSString ...
0
votes
1answer
97 views
UITableView array returns nil
Right now I have a tableview, and I can assure you that the delegate method all work. But I am trying to load the tableview from an array. the same array returns actual objects when i log then earlier ...
0
votes
2answers
185 views
How to add (coding or through storyboard) Favourite - content of cells (UITableviewcell) and UIView it self
i'm bit stumped to know how to achieve favourite option i.e. i have a lot of static cells in various views and i want user to select that cell and it adds to favourite, and idea is more like favourite ...
0
votes
1answer
866 views
Save UITextField inside of a UITableViewCell to NSMutableArray
Alright, I know this question has been asked before, but mine has a different issue than the others.
I have a text field inside of a custom tableview cell that I need to save to an array after the ...
0
votes
2answers
287 views
How to call/pass an array value from a table cell into a view?
As novice/beginner programmer for iOS, I unfortunately have come across a roadblock that I would like some assistance with. Using storyboards, I have created a table view that has a single prototype ...
0
votes
1answer
207 views
How to populate an NSMutableArray with entered Text Field
The problem that I'm having with this is that after I enter the text into the textfield, I have to leave the page and go onward to select certain options. Then when (on that second page) you click ...
0
votes
1answer
83 views
How to display the detail of an array's index in a new view?
I have table view which is populated from an array grabbed from a url. I set the title of each row with a few characters from the string object of array and when the cell is clicked a new view is ...
1
vote
1answer
1k views
Adding data to a tableView using a NSMutableArray
I'm having a problem adding an item to my tableView.
I used to initialize an empty tableView at the start of my App and get it filled with scanned items every time the tableView reappears and there ...
0
votes
2answers
152 views
An Array in which 3 objects represent one Cell in uitableView
I'm loading data from sql into an NSMutableArray lets say its a table of Entries of Height and Weight each having a timeStamp (NSDate)
So the User enters the height and Weight!
I make a call to the ...
-2
votes
2answers
831 views
NSMutableArray sorting
I have 5 NSMutableArrays in cell. I need to sort cells by one value.
Example I need to sort cell by time.
[MyArray1 sortUsingSelector:@selector(compare:)];
but how I will be with other 4 ...
0
votes
2answers
135 views
Retrieving the data from the table in iphone
I have a table wherein every row contains a textfield.After i entertext in all the rows which are text fields i want to retrieve the data into an array.Can any one tell me the idea of retrieving the ...
0
votes
5answers
383 views
How can i push a TableView on clicking a button and initialize the TableViewCell with NSDictionary?
Can anyone please help me about how to push a table view on clicking a button.
I want to load the messages from NSMutableArray to the table view cells and NSMutableArray is loaded with the data ...
0
votes
1answer
549 views
my UITableView's first item doesn't work
I am having some weird problem with my program!! I have created a nested mutable array, which consists of 4mutable arrays, each containing a string and 4 other array, each again containing a two ...
0
votes
1answer
60 views
iPhone Programming - NSMutableArray
Hello folks!
Could you tell me a good(non-redundant) way to find out the following:
- If an object exists in a NSMutableArray
- How many times does the same object appear in the NSMutableArray
- and ...
1
vote
1answer
294 views
how can i display parsed xml data in UItableview?
I have become able to parse the xml url using TBXML parser.
parsed data will be into a NSMutableArray named records.
Here is the code....
if ([[TBXML elementName:element] isEqualToString:@"order"]) ...
0
votes
1answer
476 views
Data are overlapping when i am scrolling in UItableview…why?
I have UItableview where every cell containing 5 cell and these cell are representing some parsed xml data.When UITableview execute at the start of the view controller then it shows the correct data ...
0
votes
2answers
165 views
How divide array and show in table view?
I am developing a table view. To fill that table i have an array of 75 content. Now i want to show table view like as when first time shown table view then show only 10 row of array and one button ...
0
votes
2answers
133 views
UITableView - Adding additional rows
I have created a UITableView in an app, using the basis of a tutorial from the following link;
http://www.theappcodeblog.com/?p=353
I have customised the style to my needs and it works perfectly. ...
1
vote
2answers
270 views
NSMutableArray removeAllObjects issue
I am trying to remove all the objects from the NSMutableArray and I am reloading the UITableView. But it produces SIGABRT in cellForRowAtIndexPath. The code is given below.
if ([nsMutableArray ...
-2
votes
1answer
249 views
CheckList on tableView bug [duplicate]
Possible Duplicate:
Checklist on table view wont work
Hey guys i have a UITableView that is a checklist. when a cell is touched a check is placed to the right of the cell when pressed again ...
0
votes
0answers
141 views
How to copy TableView cell data to a NSMutable Array?
I'm quite new to iphone development. I created To-Do List app using coredata.
I want to add all the names from "oneHero" manageObject to a NSMutable array (that means name1 to 1st index position of ...
0
votes
0answers
163 views
How to copy TableView cell data to a NSMutable Array?
I'm quite new to iphone development. I created To-Do List app using coredata. so, my table view dynamically updating.
I want to add table view row textlabels to a NSMutable array (that means row1 text ...
0
votes
4answers
198 views
Why am I getting an NSRangeException while inserting the 6th element into a tableview?
I am inserting data into table view as shown below. There is no problem for 5 to 6 elements if there have more than 6 then App Crashes and shows the error :
"Terminating app due to uncaught exception ...
0
votes
1answer
334 views
Issue with custom TableViewCells in table display from NSMutableArray
I'm having a weird issue - in my code I am fetching data from the internet in XML format and fill a NSMutableArray (altogether 34 items).
This data should be displayed in a TableView. I created a ...
0
votes
2answers
429 views
How to add a cell with Button?
How would this work in this case? I created a NSMutabeArray *dataSource; in my .h file, but getting a bunch of errors:
"RootViewController.m: error: Semantic Issue: Property 'dataSource' not found on ...
0
votes
2answers
274 views
display two values on same cell one on right and 2nd left side of the cell
i want to display two values (one is string and other is integer).
like following
string1 00000 int1
string2 00000 int2
string3 00000 int3
0--> spaces
i know how to display 2 values on same ...




