Tagged Questions
0
votes
1answer
27 views
adding a web view in a prototype cell
I am trying to add a web view in my table view cell and it won't let me drag and drop a web view. I did further research on creating it programmatically so i tried to do the UIWebView *webView = ...
1
vote
2answers
55 views
Generating error with trying to display results in UITableView from user search
Generating an error below when trying to display results in UITableView from search performed by the user. The code below is searching, filtering and should be displaying the results. (But isn't)
...
0
votes
1answer
17 views
Ad Hoc iOS App Causing UI Bugs
I've been running my app through XCode and all the rows in the UITableView are the correct height (they vary in length through overriding tableView:heightForRowAtIndexPath:)
But when I archive the ...
0
votes
1answer
51 views
UISegmentedControl not updating view
I am building an app in Xcode 5, and I ran into some strange behavior of UISegmentedControl.
first some info on the app i'm building:
I'm building an app in which I want to allow users to order ...
0
votes
1answer
13 views
Use data from two (or three) entities in tableview
I have an app that stores information for golf rounds. I have three Entities that I am persisting data to: Rounds, Courses, and Tees. I structured the schema in this way because there is a two-many ...
0
votes
1answer
11 views
Add a view before master detail
I have made an app using the Master-Detail Application template, and I have realised that I need to have a view before the table view. How do I do this, because I have tried to create a view then ...
-1
votes
2answers
37 views
how to show objects of nsarray on lable on tableview?
i have an NSArray of friends list on viewdidload , then i have a customized table view
each cell consists a Lable, i want to show array elements in Lable on table view cell .
my code as
tableList1 ...
0
votes
2answers
46 views
Programmatically TableView won't reloadData after JSON request
I am trying to populate a KGModal view (https://github.com/kgn/KGModal) with a TableView which works but I am unable to reloadData after obtaining data through JSON without the app crashing.
The ...
0
votes
1answer
31 views
wrong dismissal after presenting a UIViewController working as a detail view of a tableViewCell [duplicate]
In my project the app launches in ViewController, which loads inside a table (Table class) by adding it as a subview (ViewController.h - [self.view addSubview: Table.tableView];)
Camera Class is ...
1
vote
2answers
53 views
Nib prototype uitableviewcell cellForRowAtIndexPath:
Trying to set and access nib tableview cell. Basically the same as creating uitableview with a prototype tableviewcell and setting its identifier and accessing it through
-(UITableViewCell ...
0
votes
5answers
51 views
UITableView within a UIViewController - Data doesn't load
I know that there are several posts around the www, but sadly I don't get the tableView to be loaded.
here is my code:
.h file
@interface ViewControllerSzenenLichter : ...
0
votes
2answers
129 views
UITableViewController with UISearchDisplayController not reloading data
I have a ViewController class with an appropriate .XIB file. Here is the ViewController code:
ViewController.h:
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
@interface ...
2
votes
3answers
97 views
How do I drill down through a plist using UITableViews?
I'm wanting to drill down through a plist using uitableviews to get the a specific school. The drill down goes state->district->school. I've created a plist, but am not 100% sure that the structure is ...
2
votes
2answers
79 views
Calling a View from a UItableViewCell
I am trying to make my very first app. I have 6 files:
LeftPanelViewController.h LeftPanelViewController.m LeftPanelViewController.xib ForecastViewController.h ForecastViewController.m ...
1
vote
1answer
81 views
Storyboard prototype cell attributed text label does not display same as prototype
When using a TableView with Custom Cells, I have 4 labels of different fonts/colors. In Storyboard (Left side of picture), they show up as different fonts/sizes and colors, but when I run the app in ...