Coder Social home page Coder Social logo

brunow / basekit Goto Github PK

View Code? Open in Web Editor NEW
265.0 265.0 28.0 2.73 MB

BaseKit is a set of IOS class to make your life easier.

Home Page: https://twitter.com/brunowernimont

License: Apache License 2.0

C++ 0.15% Ruby 0.51% Shell 0.05% Objective-C 99.29%

basekit's People

Contributors

brunow avatar lexrus avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

basekit's Issues

Podspecs Broken?

Today when I do a 'pod install' on one of my projects with BaseKit as a dependency, BaseKit gets omitted from the install. This did not happen last week though. I am not really sure what happens. I have tried it with a brand new project. Same problem. Any advice please?

Thanks,

Norsez

titleForHeaderInSection for BKManagedTableModel

This is missing from BKManagedTableModel.

  • (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
    int count = [self numberOfSections];
    if (count > section) {
    id sectionInfo = [[self.fetchedResultsController sections] objectAtIndex:section];
    return [sectionInfo name];
    }
    return nil;
    }

BKLocationManager memory leak on Line 54?

Hi there
The LocationManager with blocks work beautifully, but when i analyze the app, it shows there might be a potential leak in line 54 of BKLocationManager.m

return [[self alloc] init];

I wonder if this is a false error, or is it safe to change it to [[[self alloc] init]autorelease]

Thanks

reloadRowsAtIndexPaths when NSFetchedResultsChangeUpdate

please add reloadRowsAtIndexPaths to below case:

  • (void)controller:(NSFetchedResultsController *)controller
    didChangeObject:(id)anObject
    atIndexPath:(NSIndexPath *)indexPath
    forChangeType:(NSFetchedResultsChangeType)type
    newIndexPath:(NSIndexPath *)newIndexPath {

    UITableView *tableView = self.tableView;

    switch(type) {
    case NSFetchedResultsChangeUpdate:
    [self cellForRowAtIndexPath:indexPath];
    [tableView reloadRowsAtIndexPaths:[tableView indexPathsForVisibleRows]
    withRowAnimation:UITableViewRowAnimationNone];
    break;
    }
    }

replace accessory image at onSelectRowWithBlock NOT working

The new image is not replaced when row is selected. The following block has been executed as expected.

[cellMapping onSelectRowWithBlock:^(UITableViewCell cell, Item *item, NSIndexPath *indexPath) {
UIImageView
accessoryView = (UIImageView *)cell.accessoryView;
UIImage *newImage = [UIImage imageNamed:@"Images/unchecked.png"];
[accessoryView setImage:newImage];
}];

Testing

Change to Kiwi testing and add more test

Website

I bought the domain basekit-framework.org, so build a simple website that introduce the project and store the documentation (appledoc)

Build an object mapper

Build an object mapper similar to RestKit. But instead of write own CoreData and network classes, use MagicalRecord and AFNetworking.

Doc

Add more doc

Build a form mapper

Configuration will be similar to cell mapping. With any object you would be able to create a table view with form fields.

[BKDynamicCellMapping] async assign image to cell using dynamic cell mapping

If I have no image locally, and want to load image from Url. What can I do to assign the image in cell mapping's block?

[BKDynamicCellMapping mappingForObjectClass:[Item class] block:^(BKDynamicCellMapping *cellMapping) {
    [cellMapping mapKeyPath:@"imageUrl" toAttribute:@"imageView.image" valueBlock:^id(NSString *url) {
       // how to load image async here and assign to uiimage view
    }];
}];

AppleDoc

Build a script that generate appledoc

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.