Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Release Three20 v1.0.6.2 #610

Merged
merged 3 commits into from Jul 17, 2011
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Three20Core/Sources/Three20Version.m
Expand Up @@ -20,4 +20,4 @@
*
* Generated from Three20 Release <a href="http://three20.info/roadmap/1.0.5">1.0.5</a>.
*/
NSString* const Three20Version = @"1.0.5";
NSString* const Three20Version = @"1.0.6.2";
4 changes: 2 additions & 2 deletions src/Three20UI/Sources/TTWebController.m
Expand Up @@ -419,7 +419,7 @@ - (void)setHeaderView:(UIView*)headerView {
_headerView = [headerView retain];
_headerView.frame = CGRectMake(0, 0, _webView.width, _headerView.height);

//self.view;
[self view];
UIView* scroller = [_webView descendantOrSelfWithClass:NSClassFromString(@"UIScroller")];
UIView* docView = [scroller descendantOrSelfWithClass:NSClassFromString(@"UIWebDocumentView")];
[scroller addSubview:_headerView];
Expand All @@ -445,7 +445,7 @@ - (void)openURL:(NSURL*)URL {

///////////////////////////////////////////////////////////////////////////////////////////////////
- (void)openRequest:(NSURLRequest*)request {
//self.view;
[self view];
[_webView loadRequest:request];
}

Expand Down