0
votes
1answer
23 views

Compile error trying to perform popover segue from a dynamic UITableViewCell

I'm trying to connect a dynamic UITableViewCell to a navigation controller in a storyboard using a popover segue. To do that I ctrl-dragged from the cell to the navigation controller, selected ...
0
votes
1answer
33 views

Custom tableviewcell not displaying

I have created a custom tableviewcell. The class has 3 labels. Using a master view controller template to get started, I changed the default tableviewcell in my storyboard to reference my new custom ...
0
votes
2answers
42 views

Prototype cell from storyboard not creating UILabels, etc

My question is very similar to this one. My custom prototype cells designed in Interface Builder using storyboards have all the internal objects set to nil (not created), so when I try to assign ...
0
votes
0answers
23 views

Create custom static cells for each section in tableview without using storyboards

I have 3 sections in tableview and cells in each section have different content view. I need to create static cells for each section. I can do this using storyboard. Is there any way to do same thing ...
0
votes
1answer
31 views

UITableView Passing Data Between Controllers Embedded Inside Containers

I have a simple test project. A UITableViewController (MasterViewController) embedded inside a navigation controller in storyboard. I am NOT segueing using the prepareForSegue to pass data to another ...
0
votes
1answer
24 views

CustomCell without customCell class with storyboard

I would to create a custom cell without create a custom cell class. I know that this is possible. I've created in storyboard a tableviewcontroller with a prototype cell with a label. In the attibutes ...
0
votes
1answer
29 views

CustomCell without customCell class

this is my problem. I would to create a custom cell without create a custom cell class. I know that this is possible. I've created in storyboard a tableviewcontroller with a prototype cell with a ...
0
votes
3answers
48 views

UITableView resizes when adding element

I´m working on a IRC client for iPhone and I am having problems with my UITableView. First I resized the tableview so that a toolbar and the keyboard will fit on the screen as the user is typing a ...
0
votes
1answer
65 views

Storyboard Static Tableview Cells Not Accessible

Using a storyboard, I've created a tableview that contains about 6 static cells that have a variety of labels, switches, and views within where one of them is not visible on startup. This made ...
0
votes
1answer
31 views

How to simple change checkmark in TableView?

In my application, in storyboard, I have a screen with a lot of Table View Cells. For example, in first two of them, I need to move checkmarks, when user touches one of them (make a select). Is ...
1
vote
2answers
88 views

UITableViewCell subviews not getting initialized

I have a TableViewController and have designed a custom uitableview cell using storyboard.I have set Identifiers and tags for all the subview in my tableview cell correctly (I am not doing this for ...
0
votes
0answers
70 views

Invisible UIButton in custom UITableViewCell (using storyboard)

I have a custom tableview cell created in storyboard, with a button in it. Actions appear to be working correctly. When I tap the cell, I get an alert telling me the cell that has been tapped. When I ...
0
votes
2answers
126 views

Why can't I initialize a UITextField from a subclass of UITableViewCell?

I've created a subclass of UITableViewCell for an iPad app. I need to dynamically generate text fields, take input from the user, and then store that information in an array. I thought of asking the ...
1
vote
3answers
92 views

Adding buttons to custom Table View Cell under custom TableView Class

Edit: See my answer for a functioning app that somehow implemented what I was trying to do. I've checked around for this and followed every available tutorial - this all seems pretty straightforward ...
3
votes
2answers
505 views

Creating a custom UITableViewCell

I'm trying to create a custom UITableViewCell. From XCode 4.6 interface builder, I've set the Style property of the cell to Custom. And added controls to the cell using drag and drop. 2 UILables and ...
0
votes
3answers
155 views

Using alloc and init when using a UITableViewCell from Storyboard

I'm doing a simples app using Storyboard that a have a View with a UITableView with a UITableViewCell that do the navigation to another UIView. So a have to code to populate the cell on the table ...
2
votes
1answer
63 views

Wrong height of UITableViewCell

I have a strange issue with the height of the table view cells. I'm creating a custom grouped style UITableView in the storyboard. I have 4 different prototype cells for a single, top, middle and a ...
2
votes
1answer
345 views

Objects inside my custom UITableViewCell (created with storyboard) are nil

I've created a custom table view cell in my iPhone app through the following steps. In my storyboard, I created a sample cell, dragged in a UILabel and a UIImageView. Added new files, which I made a ...
0
votes
1answer
109 views

UiTextField's Touch Down Event on uitableviewcell doesn't work always

Ok I'm new on iOS, and I found out something really peculiar. I'm using a UITextField embedded in an UITableViewCell, and I'm trying that when I touch the textfield it shows an UIPopOverController ...
0
votes
1answer
94 views

how to use segeu table view controller cell click and cell long click in objective

I am new programmer to objective c. I use storyboard to my app. It is contain UITableViewController. When I click it is cell using segue go to next view controller. But I want to use ...
1
vote
0answers
455 views

Dynamic prototype cells in uitableviewcontroller using storyboards

I've been scratching my head over that problem for two days now and I really can't find why such behavior is happening... This is really starting to make me sick! I have an iOS app which uses ...
0
votes
1answer
115 views

Storyboard Two Scenes. Taking text from UITableViewCell in Scene 2 to UILabel in Scene 1

I have two scenes in the storyboard. Since I'm not allowed to upload images (new user), let's call them Scene 1 and Scene 2. Scene 1: UITableViewCell with a UILabel, when this cell is selected, it ...
1
vote
3answers
160 views

Adding more prototype cells to iOS storyboard than fit in viewcontroller dimensions?

I'm working on an iOS project with storyboards and have run into a problem I can't readily solve. It's a basic viewcontroller that contains a tableview with custom cells. I have 5 prototype cells ...
2
votes
1answer
168 views

UITableViewCell displaying a UIImageView or UIProgressView

I am downloading images asynchronously and displaying them in a UITableView. While theimage is downloading, a UIProgressView should be displayed in the corresponding table row. After the download is ...
0
votes
2answers
116 views

How to set height of label which is inside of UITableViewcell?

When I try to set height of label in cell which is set in Storyboard then it works, but when I try to set height of label which has it own .xib file then it's not working. - (UITableViewCell ...
0
votes
1answer
47 views

Transition to a view in table with dynamic cells

I create tableview and I fill the table dynamic data. How to create transition between cell and another view. Сells are filled with the names of files in the folder documents. I use storyboard. ...
0
votes
1answer
187 views

Custom table view cell in storyboard

I have a pretty strange situation. I use storyboard in order to go with the times. And I have a view controller in which I have UIScrollView in which I have UITableView with with custom table view ...
1
vote
1answer
98 views

Pass a property of a custom UITableViewCell to the destination view in the prepareForSegue method

I am working on an Iphone application using storyBoard. I have a UITableView in a UINavidationView. where I load data in custom cells. and then I when the user clicks on a cell I go to another view ...
0
votes
1answer
76 views

Why are my static prototype UITableViewCells from Storyboard showing up blank?

I defined the static prototype UITableCells, subclasses, outlets, etc. in the storyboard, but when I run the app and go to that viewcontroller/scene, the cells are there, but they have no content?
2
votes
2answers
2k views

Custom UITableViewCell using Storyboard

i'm trying to make a custom cell using storyboard. I have tested my program with Basic cells and it worked. Now i'have created a new class that i named NewsCell, which is containing the diffrent ...
0
votes
1answer
156 views

Subview of a reused table view cell is nil for a specific row only

I've been trying to resolve this issue for quite some time now and I still can't figure it out. What I have is a custom table view cell in story board. In the cell, I added 6 views and each view has ...
1
vote
1answer
156 views

iOS >> UILabel in a Prototype Cell is not updated from code

I have 2 UILabels in a Prototype Cell designed in the Storyboard. Both have their designated tag number (1000 and 1001). When I write the tableView cellForRowAtIndexPath: method it seems that one of ...
0
votes
2answers
86 views

iphone - How can I referencing a UILabel from a custom table cell (dynamic)?

I created a UITableView in Storyboard. For the prototype cell, I use custom cell and added 3 UILabel onto it. The question is when I want to update the content for the 3 UILabel, how can I get the ...
0
votes
1answer
105 views

How to identify UITableView rows in Storyboard?

I used to be able to use UITableViewCells, edit those as I wanted, link them to the .h file, then all I would need to do is call them in code. But now, how would I declare a cell built in the table ...
0
votes
2answers
332 views

Handling Multiple Segues from a table view controller Error.

Alright, so this is my first post on this website and I love the fact that this site is so popular. It provides great advice for new programmers. So I recently took up iOS programming and I have hit ...
0
votes
1answer
50 views

Uitableview re sizing in storyboard

Im using uitableview with navigation controller in storyboard,while adding the tableview cell the last row data is hidden back in the toolbar.How i can show the last row?
0
votes
1answer
54 views

How to define a table view cell in storyboard for use in code?

I have a TableViewController on my storyboard that has some cells (static) that I want to add a checkmark to when the cell is tapped, how would I be able to call the individual cells from the ...
1
vote
2answers
148 views

connect uitableviewcells to diffrent viws via segue

I create a UITableView programmatically with different cells and sections that connects to the other views in storyboard like below picture: My question is: how can I connect these 3 cells to these ...
0
votes
2answers
113 views

custom cell not appear when loading new views objective-C

I create a UITableView programmatically with different cells and sections that connects to the other views in storyboard But if you check the story board absence view has custom cell with check box ...
0
votes
1answer
134 views

cells in UITableView to new views Objective-C

I create a UITableView programmatically with different cells and sections that connects to the other views in storyboard I want to connect my cells,I mean when user select the specific row it should ...
0
votes
0answers
108 views

Initialize UITableViewCell in iOS5 storybaord

I used to init cell like this UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier]; if (cell == nil) { /* customize here like apply stretch background image since it ...
0
votes
2answers
300 views

putting limitation for checkbox in UITableView Objective-C

I create table programmatically with different sections and rows, i create check box inside table with pictures as a box I want to put limitation for this check box would you please help me Edit ...
2
votes
1answer
414 views

group static tableView in storyboard does not appear

In storyboard I create static Group table view contain 4 rows when I add my tableView classes to the storyboard it dosen't show my group cell would you please help me (I'm new to iOS please show me ...
0
votes
1answer
355 views

Indenting a custom table view cell

I have created a custom UITableViewCell using Storyboard. The cell contains 3 UILabel items. When the edit button is hit. The (-) sign slides in on the left but the cell does not indent and the (-) ...
0
votes
1answer
1k views

Xcode TableView - unrecognized selector sent to instance

I'm trying to learn table views and I've hit a snag. I have the view delegate and datasource connected correctly in Storyboard, but I get the following runtime error when I get to the section of my ...
0
votes
0answers
224 views

Static UITableViewCell on Storyboard with UITextView and dynamic height. Like on Reminders

Editing a task on Reminders app you can change the description and it's inside a UITextField, the UITableViewCell grows with the size of the UITextView. Anyone knows how to solve this problem?
1
vote
2answers
124 views

Push segue from 2 sections in tablevew dosent work

I have a tableView that is configured to Push Segue to another view. The table is devided into 2 sections. When i push to the next view I allso transfer data and I have a problem with the sections. ...
0
votes
1answer
511 views

Custom cell not showing up in tableView

I have a custom cell with identifyer 'tweetCell' I have imported this into my tableviewcontroller.h file. I have linked the class to the prototype cell in storyboard. All the UILabels are wired up to ...
0
votes
1answer
660 views

StoryBoard iOS 5 - Custom UITableViewCell Crash Scrolling up

I have been coding a example of a UITableView with a custom UITableViewCell (PlayerCell). All work fine, I can see the elements in my table and I can select them, but when I do a scroll up, the app ...
1
vote
2answers
618 views

Segue'ing to a new view from a custom cell

I've created a custom table where I can scroll through a list of items vertically, but I can also scroll left and right through those vertical index. How would I go about moving to a new view (in ...

1 2