0
votes
3answers
80 views

Adding UIWebView in UITableViewCell

I have a tableview and what i want to do is add the webview on a cell as we click on the cell, plus the height of that particular cell should also adjust as per webview content. Suggestions welcomes.
1
vote
2answers
164 views

iOS UIWebView setUserInteractionEnabled to NO does not work for iOS 6

I have a UIWebView as a cell in a UITableView. I know this is not recommended, but the WebView is not scrolling, so the recommendation does not matter. I use the web view to style and theme the cell. ...
0
votes
1answer
156 views

UIWebView inside UITableViewCell, link detected but not clickable

I have UITableView with one UITableViewCell subclass. In that class I'm creating UIWebView and set the delegate to the class. I'm also implementing shouldStartLoadWithRequest. On loading the ...
0
votes
1answer
244 views

implement UIWebView in UITableView Cell

i gets JSON MutableArray From Web Contains YouTube URL Strings.. the intention is to perform UIWebView in each cell. my code: how to implement the code? thanks. @property (nonatomic, strong) ...
1
vote
1answer
123 views

Font size in UITextView change unexpectedly

I have a table view with several table view cell. The table view cell consists of title (using UILabel), picture (using UIWebView) and summary (using UITextView). When I use UIImage for the picture, ...
3
votes
3answers
298 views

Best approach for UITableViewCell with complex format

I'm new to iOS development pondering how best to approach a fairly simple design problem. I want to display a set of items, each one of which has the structure as sketched. In a given set, not more ...
0
votes
1answer
150 views

Implementing UIWebView on a custom UITableViewCell

I have this UIWebView inside a custom UITableViewCell that I've created. The problem is, when I implement the UIWebView in "MyMain", it's working but when I scroll the text is readded again and again ...
0
votes
3answers
153 views

Storing an integer as an instance variable

I'm so close on this one. Basically what I'm trying to do is return the height of a cell for my UIWebView. I've got the correct height printing out on my NSLOG. The problem now is that I need to ...
2
votes
1answer
645 views

Resizing UIWebView inside UITableViewCell based on Content

I know this has been asked to death, and I assure you I have read through every thread I could find on this topic. Nothing has worked for me so far. Here's what I have so far... I understand the ...
1
vote
1answer
182 views

UIWebView in UITableViewCell getting refreshed while scrolling

I've a custom UITableViewCell with UIWebview to display the hyperlink text in user's activity (ref. attached image).UIWebView generally takes a sec to load HTML data. Also during scrolling, UIWebView ...
0
votes
0answers
69 views

UIWebView content in UITableViewCell will float while scroll the UITableView

I have a UITableView, each cell of the table view will possibly contain a UIWebView which will contain an image load from remote/disk. It works fine showing and loading the cells and images. But when ...
0
votes
2answers
248 views

How to handle memory warning in automatic reference counting in iphone?

I am using arc in my application.In my application i had played YouTube Video in UIWebView and video url comes from database and i put that url in UITableViewCell and i got memory receive warning.My ...
0
votes
0answers
96 views

UITableViewCell with UIWebView - cause jamming and huge time in “Time Profiler”

I have problem with smooth scrolling UITableView. In my UITableView I have custom UITableViewCell which show images in UIImageView and gifs in UIWebView. Probably UIWebView make problem with smooth ...
1
vote
3answers
124 views

uiwebview in every tableviewcells

I need to display each webview in each of the tableviewcell in my Uitableview.When using the below code,when there are 2 elements,the first cell is empty but second cell is correct.hrs and hrsHtml ...
0
votes
0answers
131 views

UIWebview recycling mechanism inside UITableView

I created a UITableview with Custom Cells, contain a UIWebview each. So now I have a list of tiny websites, and thats exactly what I want. (I even set the correct height of the cells according to the ...
0
votes
1answer
257 views

UITableViewCell error loading UIWebView

As you can see there is an error. I'm loading a UIWebView on each UITableViewCell. The problem is that when it loads a large amount of data the UITableViewCell disappears and when I scroll the ...
0
votes
2answers
275 views

Loading a UIWebView from a UITableView in same ViewController Not Working

I'm working on a iPad app and I'm having a problem with the webview loading. I have a ViewController with Horizontal scrolling tableview at the top. In this tableview a another tableview is added as a ...
0
votes
2answers
2k views

Calculate UIWebView height depending on its content

I have a class named Announcement, it has a Title (NSString), a Publishing Date (NSString) and a Body (NSString with HTML content). I would like to display it in a similar way like in the Email app. ...
1
vote
1answer
1k views

create a richtext uitableviewcell with uiwebview

Well basically I am trying to pass a string to a uiwebview that just so happens to be in html format, however I am passing it to the uiwebview using loadHTMLString:myHTML. the problem that I am ...
2
votes
1answer
261 views

Determine height of UIWebView content (embedded in UITableViewCell)

I've got a UITableView holding UIWebViews of variable height, and the user has the ability to edit the content of each web view. The content of each cell (a web view) is linked to a NSManagedObject ...
0
votes
1answer
312 views

UIWebView not filling a UITableView cell

I have a webview in a uitableview cell. The problem is that the web view only takes up 75% of the uitableview cell I am not sure how iOS decided the height of the web view, as I can't seem to ...
-1
votes
2answers
561 views

Is it a good idea to add uiwebviews in table cells?

I have several local html files and I want to show them in a table with static(for now) cells. Each UIWebView would have a different height (I dont want to have any scrolls in the UIWebView) so ...
2
votes
1answer
156 views

Highlight uiwebview text in tableview cell

I have a uitableview that I have embedded a uiwebview in. The webview contains html text. I'm searching and highlighting text in the webview with JavaScript. I have successfully made the search ...
1
vote
1answer
295 views

In IOS mail app, How to Display mail attachments after mail body?

I am developing a Mail app in iOS. When displaying an email's details / contents I cannot figure out how to display mail body and attachments together. I searched for some mail apps in iPhone, ...
1
vote
2answers
323 views

Make UIWebView part of UITableviewCell

I need to make UI like following: In response to a HTTPRequest, I am getting JSON response. Title & Some HTML Content. I fill UITableViewCell with the title i get in response. Now, I need to ...
0
votes
1answer
1k views

Using UIWebView in a UITableViewCell to display dynamic content

I need to display non-editable text with different styles and colors in table view cells. In researching, it seems that UIWebView is the way to achieve the style/color flexibility that I want. Here ...
1
vote
1answer
290 views

How do I set a highlight colour for text in a UIWebView?

Our app uses a lot of custom UITableViewCells. Most have a few extra UILabels, and in those we can set the highlightTextColor property of the label so that when a user selects the cell, the text ...
1
vote
0answers
125 views

XCode Allocation Tool indicates a High allocation count for UIWebView created in table Cell

I checked the allocation tool and found the following: What does the line in dark purple mean? Does it mean that setting a UIWebview in a UITableCell is using up lots of memory - 1.58 MB (during ...
0
votes
1answer
432 views

Unable to set UIWebview (with Youtube Videos) correctly in UITableViewCells

I am adding a UIWebView to my table cells and then embedding youtube video HTML into them. This issue I have is that the videos are not displaying correctly after I scroll down and up the table again ...
0
votes
1answer
366 views

Web page button click in UIWebView works on Simulate not on iOS device

I have what appears to be an interesting problem. I have a UITableView where one of the table view cells contains a UIWebView. In the UIWebView I place some HTML code. On the simulator I can click ...
0
votes
1answer
592 views

UIWebView Subclass with Custom HitTest

I have a UIWebView in many UITableViewCell objects which live in a UITableView. When you try to scroll the UITableView, sometimes the touches will get "stuck" on the UIWebView objects. However, I ...
0
votes
1answer
749 views

UIWebView in UITableView loses text

I just changed my tableview to read rich text rather than plain text, so my solution was to load the rich text into a UIWebview, then add the webview to the tableview cell contentview. However, with ...
0
votes
1answer
784 views

Open a new view when didSelectRowAtIndexPath

In my main view I have a UITableView. I want to open a new view when the user taps on a cell, this is what I have currently: - (void)tableView:(UITableView *)tableView ...
0
votes
2answers
4k views

Fitting UIWebView into UITableViewCell

I want to add a UIWebView into a cell. THe HTML data will change and I will call reloadData when this happens. Problem is, the UIWebView changes nicely but I can't get the UITableViewCell to match ...
1
vote
1answer
408 views

Text formatting issue in UIWebview?

I've a webview which is placed inside a custom table view cell, since dynamic data is to be loaded in to this webview, some text gets cut off as per current webview frame. So I'm asking is there any ...
1
vote
1answer
750 views

Blink when reloadData a UITableView with UIWebView

Hi! I'm working with an UITableView, with UITableViewCell. The UITableViewCell has inside an UIWebView (because i'm using entities, bold text, ecc...). The webview is loaded with this code: ...
0
votes
0answers
201 views

View Web Page After Clicking Cell in a Table View

I have prepared an iPhone app with a table view inside a tab bar. The app works great until I click on a cell in the table, expecting it to display a web page. Here's the first part of the code that ...
0
votes
2answers
689 views

Scrolling Problem on using UIWebView in UITableViewCell

I created the instance of the UILabel and added it as the subView of the contentView which is embedded in the table view cell. Then I created web view (from UIWebView) and added it as the subView on ...
0
votes
2answers
712 views

How to insert UIWebView between UITableViewCells when I tap on accessoryButtonTappedForRowWithIndexPath?

I need to display the UIWebView under the UITableViewCell when user selects the required cell by tapping on the accessoryButtonTappedForRowWithIndexPath. for example I have three rows, Home, Office ...
0
votes
2answers
994 views

Bubble Chat + Emoticon + UITableViewCell

This is a question for iPhone development and I'm hopin someone can point me to the right direction on how i should go about implementing this. I am trying to write a chat application that supports ...
1
vote
1answer
573 views

UIWebView as part of a UITableViewCell: leading to crash because of a thread lock

I'm trying to add a UIWebView as a subview of a UITableViewCell in order to display some data formatted with MIMEType 'application/xhtml+xml'. Even just initializing the UIWebView as described in the ...
1
vote
1answer
1k views

Embedding a long UIWebView within a table view cell with various heights

I want to be able to embed a UIWebView into a tableview's cell (grouped style). The web view is long (longer than the screen), and I want it to display it's full length. So there is no scrolling ...
1
vote
1answer
2k views

UIWebView inside a UITableViewCell

Has anyone tried it? The hardest part for me is to get the height of the UITableViewCell to be the same as that of the UIWebView. By debugging into the code, I noticed that the delegate for ...
1
vote
1answer
860 views

How to Make URLs clickable inside of UITableViewCell?

I know how to use UIWebView and can invoke a WebView if it is associated with a specific button or UITableViewCell. What I am trying to achieve is to have a UITableViewCell with a chunk of text. That ...
0
votes
2answers
1k views

UIWebView in custom UITableViewCell

i am not sure if this is a good route to go,...i have some data i receive from the web which in turn, populates a table view. The problem is, the text is html (p tags, etc). My first thought was to ...
30
votes
6answers
33k views

How to determine UIWebView height based on content, within a variable height UITableView?

I am trying to create a UITableView with variable height rows as explained in the answer to this question My problem is each cell contains a UIWebView with different (statically loaded) content I ...