{"id":32312333,"url":"https://github.com/mpatelcas/mpprogressviewcell","last_synced_at":"2025-10-23T09:55:00.801Z","repository":{"id":62447058,"uuid":"48784092","full_name":"mpatelCAS/MPProgressViewCell","owner":"mpatelCAS","description":"It's Simple UIImageView Category Class which is for downloading image from remote server using SDWebImage and DACircleProgressView ","archived":false,"fork":false,"pushed_at":"2016-08-17T09:46:50.000Z","size":594,"stargazers_count":21,"open_issues_count":0,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-10-23T09:54:55.350Z","etag":null,"topics":["sdwebimage"],"latest_commit_sha":null,"homepage":null,"language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mpatelCAS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-12-30T05:43:37.000Z","updated_at":"2024-10-17T01:38:33.000Z","dependencies_parsed_at":"2022-11-01T23:00:57.613Z","dependency_job_id":null,"html_url":"https://github.com/mpatelCAS/MPProgressViewCell","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mpatelCAS/MPProgressViewCell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpatelCAS%2FMPProgressViewCell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpatelCAS%2FMPProgressViewCell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpatelCAS%2FMPProgressViewCell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpatelCAS%2FMPProgressViewCell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mpatelCAS","download_url":"https://codeload.github.com/mpatelCAS/MPProgressViewCell/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpatelCAS%2FMPProgressViewCell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280598938,"owners_count":26357977,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-23T02:00:06.710Z","response_time":142,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["sdwebimage"],"created_at":"2025-10-23T09:54:59.706Z","updated_at":"2025-10-23T09:55:00.781Z","avatar_url":"https://github.com/mpatelCAS.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MPProgressViewCell\nIt's Simple UIImageView Category Class which is for downloading image from remote server using SDWebImage and DACircleProgressView \n\n[![Alt][screenshot1_thumb]][screenshot1]\n\n[screenshot1_thumb]: https://github.com/mpatelCAS/MPProgressViewCell/blob/master/ScreenShots/Simulator%20Screen%20Shot%20Dec%2030%2C%202015%2C%2011.42.09%20AM.png\n[screenshot1]: https://github.com/mpatelCAS/MPProgressViewCell/blob/master/ScreenShots/Simulator%20Screen%20Shot%20Dec%2030%2C%202015%2C%2011.42.09%20AM.png\n\n## Installation\n\nMPProgressIndicatorCell is available through [CocoaPods](http://cocoapods.org) ,To install it, simply add the following line to your Podfile:\n\n```ruby\npod \"MPProgressIndicatorCell\"\n```\n\n\n## Usage\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\nThen import the ProgressViewCell into your source files (or into your bridging header if you're using with Swift and not using frameworks with CocoaPods):\n\n```obj-c\n#import \"MPProgressCell.h\"\n```\n\nIf you are using Swift and frameworks, then you can just import the browser into your Swift source file:\n\n```swift\n#import \"MPProgressIndicatorCell/MPProgressCell.h\"\n```\n\nMPProgressViewCell is designed to be presented within a navigation controller. Simply set the delegate (which must conform to `MPProgressCellDelegate`) \n\nSee the code snippet below for an example of how to implement the MPProgressViewCell. There is also a simple demo app within the project.\n\n## What's new in 1.0\n\nAdded a new method in which you can also show processing with placeholder image\n\n###  Delegates\n\n```obj-c\n   [imageview mp_setImageFromURL:URL];\n   [imageview mp_setImagefromURLwithPlaceholder:URL\n                               placeholderImage:[UIImage imagenamed:@\"placeholder.png\"]];\n```\n\n\n### Table View Cell\n\n### progressCell.h\n\n```obj-c\n\n@class MPProgressCell;\n\n@interface progressCell : UITableViewCell\n\n@property (weak, nonatomic) IBOutlet MPProgressCell *imgView; // bind the image view with MPProgressCell Category Class\n\n```\n\n###  Table View Controllor \n\n```obj-c\n\n#pragma mark - Table view data source\n\n- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {\n    return 1;\n}\n\n- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {\n    return 5;\n}\n\n- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath\n{\n    progressCell *cell = [tableView dequeueReusableCellWithIdentifier:@\"MPCell\"\n                                                     forIndexPath:indexPath];\n                                                     \n     [cell.imgView mp_setImageFromURL:[NSURL URLWithString:@\"http://farm4.static.flickr.com/3590/3329114220_5fbc5bc92b.jpg\"]];\n\n   /*  Now you can also show processing with placeholder image\n     [cell.imgView mp_setImagefromURLwithPlaceholder:[NSURL URLWithString:@\"http://farm4.static.flickr.com/3590/3329114220_5fbc5bc92b.jpg\"] placeholderImage:[UIImage imageNamed:@\"22.png\"]]; */\n   \n    return cell;\n}\n\n- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {\n    return 110.0f;\n}\n\n```\n\n\n## Author\n\nMayank Patel, mpatel@customapps.in\n\n\n## License\n\nMPProgressViewCell is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmpatelcas%2Fmpprogressviewcell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmpatelcas%2Fmpprogressviewcell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmpatelcas%2Fmpprogressviewcell/lists"}