We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I have used the MotionJPEGImageView inside the UITableViewCell to use in UITableView,
After I close the UITableViewController, the images are still loading. how to overcome this Issues
Here is the Code I used for cellForItemAtIndexPath
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellIdentifier forIndexPath:indexPath]; ZmCamera *curCam = [self.server.cameras objectAtIndex:indexPath.row]; MotionJpegImageView *mjpegView = (MotionJpegImageView *)[cell viewWithTag:44]; mjpegView.contentMode = UIViewContentModeScaleToFill; UILabel *label = (UILabel *)[cell viewWithTag:88]; [mjpegView stop]; mjpegView.url = [self buildLiveViewURLwithCameraId:curCam.Id]; [mjpegView play]; label.text = [NSString stringWithFormat:@"%@", curCam.name]; mjpegView.layer.borderColor = [UIColor blueColor].CGColor; mjpegView.layer.borderWidth = (indexPath.row == self.position) ? 2.0 : 0; return cell;
The text was updated successfully, but these errors were encountered:
I have same problem problem
Sorry, something went wrong.
No branches or pull requests
Hi, I have used the MotionJPEGImageView inside the UITableViewCell to use in UITableView,
After I close the UITableViewController, the images are still loading. how to overcome this Issues
Here is the Code I used for cellForItemAtIndexPath
The text was updated successfully, but these errors were encountered: