English 中文(简体)
2 个 UIWeb 视图的切换内容
原标题:Switching content of 2 UIWebViews

在我的应用程序中,我有一个滚动视图, 包含多个网络视图(我只用3个网络视图做无限滚动)...为了做到这一点,我需要将2个网络视图的内容转换为2个网络视图(比如将一个网络视图复制到另一个? )...这不能仅仅通过将 htmlString从一个网络视图装入另一个网络视图来完成...

有什么想法吗 提前多谢了

EDIT:该代码非常相似于此教程 : < a href=""http://mobile Developmentertips.com/user-interface/create-circulate-and-infinite-uiscrollviews.html" rel="nofollow" >http://mobile Developmentertips.com/user-interface/create-circolent-and-infinite-uiscrollviews.html

问题回答

如果有人关心我仅仅通过将uiwebvies添加到可变阵列中,然后先在滚动视图中切换它们(视觉),然后在变动阵列中切换它们(逻辑上),然后在变动阵列中切换它们。举例来说,从代码上方的链接看,“滚动右侧”是这样的(滚动ViewdidEnd Deceration:) :

         CGRect frame = ((UIView*)[self.arrWebViewsContent objectAtIndex:2]).frame;
        ((UIView*)[self.arrWebViewsContent objectAtIndex:2]).frame = ((UIView*)[self.arrWebViewsContent objectAtIndex:1]).frame;
        ((UIView*)[self.arrWebViewsContent objectAtIndex:1]).frame = ((UIView*)[self.arrWebViewsContent objectAtIndex:0]).frame;
        ((UIView*)[self.arrWebViewsContent objectAtIndex:0]).frame = frame;

        UIView *view_tmp = [self.arrWebViewsContent objectAtIndex:0];
        [self.arrWebViewsContent replaceObjectAtIndex:0 withObject:[self.arrWebViewsContent objectAtIndex:1]];
        [self.arrWebViewsContent replaceObjectAtIndex:1 withObject:[self.arrWebViewsContent objectAtIndex:2]];
        [self.arrWebViewsContent replaceObjectAtIndex:2 withObject:view_tmp];




相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签