Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wonder how some apps do this great affect, i've trying to accomplish this but without much success.

the idea is to add views like textview or label to a webview or to scollview so that it appears with gray background and can be scrolled, the below image describes the intended goal :

enter image description here I would be very much appreciated if you help me.

share|improve this question

3 Answers

Use following code and just background color your UIView.Hope It will helps you.

[webView setBackgroundColor:[UIColor clearColor]];
[webView setOpaque:NO];
share|improve this answer
Doesn't work, i want the textview ,labels..etc to be able to scroll with the webview not independent or fixed. thanks – mbg1987 Sep 28 '11 at 15:25

Use a pure HTML/javascript/CSS solution, not a native UIVIew laid on top of the UIWebView

CSS like this creates an initially invisible box, 400px wide, 120px from top, white background, bordered:

.floater
{
    display: none;
    position: absolute;
    top: 120px;
    left: 50%;
    width: 400px;
    margin-left: -200px;
    z-index: 200;
    background-color: #ffffff;
    border-top: solid 2px #b0b0b0; 
    border-left: solid 2px #b0b0b0; 
    border-bottom: solid 2px black; 
    border-right: solid 2px black; 
}

Use this class="floater" on your label, div, whatever.

You can then use the display style to hide/unhide it via javascript.

share|improve this answer

If you want your content to scroll within the webView, You have to add the view as a subview of the first subview of the webview.

The scrollview is the first subview of the webview

 [[[webview subviews] objectAtIndex:0] addSubview:imageview];
share|improve this answer
That's exactly what i was looking for, thank you so much – mbg1987 Sep 30 '11 at 22:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.