-1
votes
0answers
20 views

How to change the uitableviewcell data on moving the cells

I am new to iphone programming. I want to populate the table view cells with some data and the row number.if i moved the rows the row number has to update for all the cells. please help me out
1
vote
2answers
40 views

UITableViewCell clipsToBound not working

In my custom cell I have written [self setClipsToBound : YES] and then adding these red imageViews as its subviews as [self addSubview:imageView] But as you can see the imageView is not getting ...
0
votes
2answers
41 views

Custom UITableViewCell setup everything in init* or use properties

I'm wondering what is the best approach/design when using custom UITableViewCells. One way I'm doing it is having a init that takes all parameters necessary to setup the UITableViewCell. Like ...
0
votes
1answer
60 views

how to load a popup from an uibutton in uitableviewcell

In my app i've got a view controller with a table view. Inside of one UITableviewCell there's an uibutton which, on click, should show a popup view. Inside my project i've already imported KGModal ...
0
votes
2answers
28 views

UiTextView in Custom UiTableViewCell does not responds to didSelectRowAtIndexPath

I have a UITextView on a custom UITableViewCell and when I click on the UITextView, it does not trigger the didSelectRowAtIndexPath, how do I change this behavior so that that delegate is called as ...
0
votes
4answers
57 views

How to add new UITextField to a custom UITableViewCell when return key pressed with animation

For example in iphone contacts application,in add address cell, when user typing in the "street" text field , another text field with place holder "street" is add below the current text field with ...
1
vote
0answers
44 views

UITableViewCell behaving strange

I posted a thread earlier about a strange behavior when resizing UITableView for it to fit a keyboard. I want to simulate the same functionality as for when a user sends an SMS and the UITextField ...
0
votes
5answers
64 views

How to know the section number on button click of Tableview cell in a UITableView? [duplicate]

I have a UITableView for which I have created a custom UITableViewCell. Each row in tableview has a button. I want to know the section number on click of a button, so that I would know that from which ...
1
vote
3answers
51 views

How to know the indexPath/row on button click of Tableview cell in a UITableView? [duplicate]

I created a TableView having a custom UITableViewCell. A button is associated with each row of tableview. Now I want to know the row number on click of a button, so that I would know that of which row ...
0
votes
1answer
37 views

Setting three sided border for UITableView - IOS

For my design specifications, my table view should only have three borders on top, left, and right. I have added it using the following code.... CGSize mainViewSize = menu_table.bounds.size; CGFloat ...
0
votes
3answers
42 views

iOS - Table cells not being redrawn on device rotation

So I have an application which I'm trying to optimize for all the orientations. But I'm having a problem with table views and autorotation. This is how it looks when in Portrait: Now, when I rotate ...
0
votes
5answers
49 views

UTableView scrolling slowly with images

I have problem I am loading UITableViewCell with images all images shown to me but the problem is UTableView scroll very slow this is the code - (UITableViewCell *)tableView:(UITableView *)tableView ...
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
84 views
+50

Adding a method to my uitextfield in cell?

I am adding this Method to my code to format the textfield. I am using the code below to try and add the method, but it not working, what am I doing wrong? .h file NSString* phone_; UITextField* ...
2
votes
1answer
63 views

Dropdown in UITableview in ios using indentation levels

Here I want a Multilevel tableview. I was able to create it successfully but when one of the levels is selected, any previously expanded dropdown level should collapse. I used the sample code below. ...
0
votes
2answers
36 views

UITableViewCell nil condition

Usually we configure the Cell outside the condition of Cell nil. In my case I am doing the same that convert NSData to image outside Cell nil. So that, every time I fire the request and reload table, ...
0
votes
3answers
75 views

Stopping UITableViewCell reusability

I know there are bunch of questions here related to this topic but i couldn't find any that matches my issue. I have subclass of UITableViewCell named "CustomTableViewCell". The below mentioned code ...
1
vote
4answers
65 views

cell images changing on scrolling UITableView

hi my problem is when i scroll UITableView cell images changing actually these images are on webserver and i and downloading it using asyncdownloading . i had added a UIImageView on UITableViewCell. ...
0
votes
2answers
53 views

How to add clear button UITextfield? [duplicate]

I would like to add a clear button inside a UITextfield but it doesn't show up. This the code for the UITextfield: @implementation databaseEnterDataViewController @synthesize customer = customer_ ...
0
votes
1answer
30 views

static tableview - cells initially off screen not updating

I call the following method in viewWillAppear() in my tableview controller to load up my static cells with the data I want to display. Sections 1 & 2 display correctly. Section 3 doesn't load at ...
0
votes
2answers
32 views

IOS create new UITableViewCell with properties of a prototype cell

I am working on an app that has several prototype cells in one view. This worked well for easily altering the appearance of the app while in development using the storyboard. However, now I'm adding ...
0
votes
2answers
20 views

Drawing on a UITableViewCell backgroundView using CoreGraphics

I have a subclass of UITableViewCell where I need to draw a custom backgroundView for the cell. Implementing drawRect:, I can draw the view fine, but it is behind the tableView and tableViewCells. ...
0
votes
1answer
26 views

cellForRowAtIndexPath not called and numberOfSections and numberOfRows are bigger than zero

I have a strange problem that ocurrs with simulator of iPhone 4 but not with simulator of iPhone 5... The situation is: I have a screen composed by one VC that contains a TableViewController. In the ...
0
votes
2answers
56 views

push to another view controller when select a UILabel in iOS

I am trying to push from controller view to anther one when selecting a UILabel from the first view controller, but I didn't find the triggered segue on the left side in the connections inspector. ...
0
votes
3answers
52 views

Change the value of a custom tableview cell label with uislider

I am using a custum tableviewcell with a slider(m_CrtlSliderRating) and a label(m_CtrlLabelpositonName) . I need to change the text of the label with respect to the slidervalue changed.Below is what i ...
2
votes
2answers
34 views

Duplicate elements in UITableView per section

I have 6 sections in a UItableView, every section displays 2 cells, normally, I want it like this: However, here is what I have: Every indexPath.row is duplicated in every section. Here is the ...
0
votes
4answers
52 views

Custom Cell, only last cell gets [layoutSubviews]?

I'm creating a Settings View for my app, and in that view is a UITableView. I'm creating custom cells to meet my needs, but I'm having issues - only the last cell is getting [layoutSubviews]. Am I ...
1
vote
1answer
68 views

How to increase a cell height by animation in objective C

I have UITableviewcell which i want to make it big by tapping on it . I am able to make it big if i tap and get back to normal height when i tap it once again , but the transition isnt good . Is there ...
1
vote
1answer
42 views

TouchesBegan not triggered in UIView as subview of UITableViewCell

I'm creating a custom dropdown menu inside a cell of a UITableView adding this menu as a subview of the cell content view. When I click on the menu inside the cell I enlarge the view to show all the ...
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 ...
-2
votes
1answer
44 views

add another UITableViewCell to view controller [closed]

I have a table view controller, and I have a UITableViewCell which includes a list of information, I want to add another UITableViewCell which includes for example fast news. When I run my ...
2
votes
1answer
52 views

Don't want to centre the content on UITableViewCell

This my UITableViewCell without expanding . The contents on the UITableView are horizontally centered as the behavior of the table view . this is my UITableViewCell with expansion . Here contents ...
0
votes
1answer
81 views

Getting bad access while deleting cell and reloading table view

I am trying to build a table using custom UITableViewCell, but after deleting cell and when I try load the view, I get an EXC_BAD_ACCESS error,here i'm getting data from a dictionary and loading it ...
0
votes
2answers
30 views

Touch Event on UTableViewController

There I need to add touch event on UTableViewController Like there will be an image w.r.t. to each UICell, so when user touches any cell corresponding image will be visible to user, Image will only ...
1
vote
1answer
50 views

Multiple video playing issue in UITableViewCell

In my app I am trying to play multiple videos in UITableViewCell for this I am using MPMoviePlayerController it plays the video without any issue. but it play one video at a time and in other cell I ...
-1
votes
2answers
37 views

All output Results are working but tableview is not load data from web service in iphone application [closed]

Sorry for my previous message.It is wrong. All output Results are working but tableview is not load data from web service in iphone I want load data to tableview from my web service in my iphone ...
0
votes
2answers
54 views

How to set Title for cell using Dictionary

I want to use NSDictionary instead of cell Array. Following is my code: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ ...
0
votes
1answer
41 views

How to increase the Label value seperately in each row,table contains so many Sections

I have a UITableView with a certain number of sections and rows. When a user selects a cell, how do I perform the actions of plus and minus Buttons in My ViewController? i mean to increase the Label ...
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 ...
1
vote
3answers
70 views

UITableView performance issues when adding UIViews to cell.contentView

I am experiencing performance problems when using some subviews on my UITableViewCells. After I keep scrolling it eventually starts getting very slow. First step I am doing is creating a common ...
2
votes
1answer
41 views

iOS: how to programatically select text in UITextField without the “range selectors”on the side

I have UITextField's in my app which are in a UITableView and I want their text selected when I tap them, cause normally users will want to erase what's already there before entering new text. I have ...
0
votes
2answers
29 views

Check image not working properly in uitableviewcell over button, tag and cell reuse issue

Check Images removing after scrolling. I have to reuse cell and also dont want to use didselectrow method because i am having several buttons in one cell and this is the sample i created for ...
0
votes
1answer
51 views

when select row the first selectedrow shows blank

In the viewDidLoad, I called tableview selectRowAtIndexPath at row 0, after that when I click other rows, row 0 shows blank. What's wrong? The code: - (void)viewDidLoad { UITableView ...
0
votes
3answers
72 views

iOS: button in UITableViewCell class to call method on main UIViewController

I have a UITableView on my MainViewController which has custom UITableCells defined in a CustomCell class. I need an UIButton, which is in my CustomCell class, to call a method in MainViewController. ...
0
votes
1answer
25 views

iOS: retrieving selection state from button created in UITableViewCell

I have a UIButton on a custom UITableViewCell (to which cells are added dynamically), which is defined on a different class than the MainViewController, the CustomCell class. I need a method in the ...
2
votes
4answers
79 views

UITableViewCell - Understanding “reuseable”

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *reuseIdentifier = @"cellReuse"; UITableViewCell *cell = [tableView ...
1
vote
0answers
24 views

Multiple custom Checkmarks in tableviewcell reusing issue, how to set second check image on button

I am using 4 buttons with image from array like a gallery in TableView, Now i want to select image and deselect image for moving objects of array to another. Uitableview selection Working for the ...
0
votes
3answers
67 views

how to disable tableview specific row but the specific row contain uibutton. button must access

I have UITableview uitableview containe playlist audio song and i put a button in cell. User click on the row audio start to play i want , when user click on row only button should be enable while ...
-2
votes
1answer
106 views

How to display UIImage on uitableviewcell [closed]

I have UITableview where I display an UIImage based on UISwitch state. I am storing the switch state in NSMutableArray. I am able to display only two images if i try to display more than two its not ...
1
vote
1answer
69 views

Monkeytalk : Verify custom UITableViewCell Label text without select the cell

I have an iPhone application that has a search box and UITableView with custom UITableViewCells. This Table Loaded with search results after user enter a search word and tap search. I need to test ...

1 2 3 4 5 66