WebView renders in the wrong location in my ScreenSaverView - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T15:31:55Zhttp://stackoverflow.com/feeds/question/363889http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/363889/webview-renders-in-the-wrong-location-in-my-screensaverview0WebView renders in the wrong location in my ScreenSaverViewDustin2008-12-12T19:34:53Z2008-12-12T22:12:24Z
<p>I've written a screen saver that displays a web page. It works exactly as I want it to on my main display, but in the preview and secondary displays, the web view is hanging off the top of the screen.</p>
<p>Example (from preview):</p>
<a href="http://skitch.com/dlsspy/6mds/screen-saver-bug" rel="nofollow"><img src="http://img.skitch.com/20081212-nk5cqrgfds1funr1a3p72aw25q.preview.jpg" alt="screen saver bug" /></a><br />Uploaded with <a href="http://plasq.com/" rel="nofollow">plasq</a>'s <a href="http://skitch.com" rel="nofollow">Skitch</a>!
<p>My code is pretty straightforward. From within <code>initWithFrame:isPreview:</code> I have the following code:</p>
<pre><code>webview = [[WebView alloc] initWithFrame:frame
frameName:@"main"
groupName:@"main"];
[self addSubview:webview];
</code></pre>
<p>Does anyone have any idea what's happening?</p>
<p>If anyone wants to play with the project, <a href="http://github.com/dustin/websaver" rel="nofollow">the code</a> is on github.</p>
http://stackoverflow.com/questions/363889/webview-renders-in-the-wrong-location-in-my-screensaverview/364125#3641251Answer by millenomi for WebView renders in the wrong location in my ScreenSaverViewmillenomi2008-12-12T21:00:59Z2008-12-12T21:00:59Z<p>I think the frame you're giving the WebView is in the wrong coordinates. Remember that a view's frame is expressed in terms of the superview's coordinate system (bounds).</p>
<p>You should be making the view as big as the superview's <code>-bounds</code>, if I get correctly what you want to do: usually a rect from (0,0) to (width,height).</p>
http://stackoverflow.com/questions/363889/webview-renders-in-the-wrong-location-in-my-screensaverview/364333#3643331Answer by Marc Charbonneau for WebView renders in the wrong location in my ScreenSaverViewMarc Charbonneau2008-12-12T22:12:24Z2008-12-12T22:12:24Z<p>I looked at your code and you're using the superview's (WebSaverView) frame rectangle as the WebView's frame. You should instead use it's bounding rectangle (<code>[self bounds]</code>). The bounding rectangle represents the area "inside" the superview. As you've seen, the two may not always have the same origin, which is causing this issue. You should not be adjusting the frame you're passed in <code>initWithFrame:</code>, since the origin probably has a very good reason for not being 0,0.</p>