Tagged Questions
0
votes
0answers
6 views
UIMenuController , custome MenuController in Tableview
I wrote this code, but when I tap on a row I have only Delete Item Displayed.
But if I write the same @selector I have 2 items that I want to have 2 different selectors.
[self becomeFirstResponder];
...
2
votes
0answers
51 views
Deleting a cell from UITableView from another UIViewController
I have two view controllers, TypeViewController and FavoritesViewController, TypeViewController consists of a type that can be favorited by pressing a UIBarButtonItem. Pressing the button saves the ...
0
votes
0answers
23 views
getting null UITableView and cant access Instance NSMutatableArray
My goals is to remove the cell from being visible after a certain method is called.
Basically im trying to remove the cell once the +(void)deleteFound has been called, please see where im trying to ...
0
votes
0answers
23 views
Uitableviewcell hight row dynamically rows & sections
I want to have dynamically rows height size
Here is the code ,works great for dynamically high for each row works great
but I want to have section for 2 rows and the codes don't work
- ...
-1
votes
1answer
25 views
UITableView numberOfRowsInSection , dynamically
i want to have one table view same this
row0
row1
row2
row3
row4
row5
but now with this code i have this tableview i konw i have change in numberOfRowsInSection part
but i dont konw ...
0
votes
1answer
46 views
UITableview , dynamically section & rows
want create a uitableview dynamically with 2 rows in one section
i write this code but i have problem the repeats only 2 first rows in all sections
now i have this row 0,1 -> section 0 , row 0,1 ...
0
votes
0answers
44 views
Two mutable arrays getting mixed
I am making a table object which by a swipe gesture changes the displayed values to completely different ones. This works because there is a UIPageControl which shows which set must be displayed on ...
0
votes
2answers
41 views
How do I store this object in my iOS class?
I am creating my first Master-Detail application for iOS.
I want to store the following
Name
Web URL
In my UITableView, I plan on displaying only the name (sorted) but when the name is tapped, ...
0
votes
1answer
37 views
Try to present uitableview with nsmutablearray
ok i try my best to explain my problem, I try to create an array after user finish picking a picture from their device
- (void)imagePickerController:(UIImagePickerController *)picker
...
0
votes
3answers
54 views
Multiple Array name in one place
I have a storage app where you input first name and surname separately and I was wondering if it was possible to put the names in the same tableView item.
Here is my tableView code:
#pragma mark ...
0
votes
1answer
27 views
Strange objectAtIndex beyond bounds error in UITableView
I am implementing a search keywords history with predicate in a UITableView.
I allocate and init a NSMutableArray object filteredHistory in viewDidLoad. This array gets filled when I type something ...
0
votes
2answers
33 views
Create an array of custom Object to fill it and take his content to fill a UITableView
I have a Class called Product that contains some propeties, I wanna make that my class will be the base for an list of Product called Products. And this list can access in a UITableView to fill it ...
0
votes
0answers
35 views
NSArray Data to Both UITableView and UICollectionView
I have an NSMutableArray I build with the below code
//Question Array Setup and Alloc
stratToolsDict = [[NSMutableDictionary alloc] ...
0
votes
1answer
33 views
Add Only 20 Most Recent Items From XML To NSMutableArray
I am parsing a rather large XML file, and putting each item into a cell on a tableview. After I parse the xml, it adds all the items to a NSMutableArray and then adds the number of rows based off the ...
1
vote
2answers
75 views
Delete element in array before creating table view cells
Im quite new in objective-c and im trying to do a UItableview app. The whole concept is that i have two views, both tableviews. In the first view controller I have months and depending on which month ...