Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6939989
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T12:41:46+00:00 2026-05-27T12:41:46+00:00

I’m extending TTThumbsViewController to display photos from external source. Everything works fine but I’d

  • 0

I’m extending TTThumbsViewController to display photos from external source. Everything works fine but I’d like to change one behaviour of the controller: I’d like to display/load images in TTThumbsViewController while the user is still scrolling and not only when the user finishes scrolling.

I saw that in TTTableViewDelegate.m the requests are being suspended when scrolling starts and I’ve tried setting it no NO but it only seems to fetch the images and not actually displaying them when they finish loading.

//TTTableViewDelegate.m
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
  [TTURLRequestQueue mainQueue].suspended = YES;
  ...
}

In addition I hooked to the begin and end dragging delegate calls to try and refresh the view every second or so with hopes of displaying the thumbnails, I’ve tried calling invalidateView, reload and a couple more on the main thread but none seemed to work (invalidateModel doesn’t suit my purposes here).

Could anyone point me in the right direction?

Thanks in advance

Edit1: there is a loader in status bar if I scroll when I use [TTURLRequestQueue mainQueue].suspended = NO; but it doesn’t actually fetch the images, confirmed with wireshark.

Edit2: after a bit more debugging I found that the request is sent programatically but the response is only received after we finish scrolling, so it seems the asynchronous delegate methods of NSURLConnection are not firing while a scrollView is being scrolled, but I’ve managed to do similar code (working) in another view controller with a tableView without using three20 lib.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T12:41:47+00:00Added an answer on May 27, 2026 at 12:41 pm

    After googling around numerous threads and forums I finally achieved the behaviour I wanted, although I changed three20 code instead of extending it in one part: in my thumbsViewController I implemented the following delegate allowing requests to be made while scrolling:

    -(void)didBeginDragging {
        [super didBeginDragging];
        [TTURLRequestQueue mainQueue].suspended = NO;
    }
    

    Now to solve the problem of the connections not being processed while scrolling I found NSURLRequest won't fire while UIScrollView is scrolling useful and in TTRequestLoader.m I changed the following:

    //TTRequestLoader.m
    - (void)connectToURL:(NSURL*)URL {
        ...
        //To allow requests while scrolling we must schedule the conenction in other run loop
        //_connection = [[NSURLConnection alloc] initWithRequest:URLRequest delegate:self];
        //code above was replaced by the one below
        _connection = [[NSURLConnection alloc] initWithRequest:URLRequest delegate:self startImmediately:NO];
        [_connection scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSRunLoopCommonModes];
        [_connection start];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, after submitting a string like this Jack’s Spindle from a text
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string
I am trying to understand how to use SyndicationItem to display feed which is
I've got a string that has curly quotes in it. I'd like to replace
I am reading a book about Javascript and jQuery and using one of the
I have a French site that I want to parse, but am running into
In my XML file chapters tag has more chapter tag.i need to display chapters

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.