Giter VIP home page Giter VIP logo

Comments (11)

ermalkaleci avatar ermalkaleci commented on July 21, 2024

from carbonkit.

paulocoutinhox avatar paulocoutinhox commented on July 21, 2024

It crash the app when running on iOS7.
I'm dont using autolayout or interface builder and when i use ths library on iOS7 it crash with the errors that i show on link, is the same problem.
But on iOS8 it is working.

from carbonkit.

paulocoutinhox avatar paulocoutinhox commented on July 21, 2024

I did made i simple sample of the problem:

https://github.com/prsolucoes/CarbonKitError

from carbonkit.

paulocoutinhox avatar paulocoutinhox commented on July 21, 2024

The error happens on line:

- (void)didMoveToSuperview {  
         ....  
    [self setTranslatesAutoresizingMaskIntoConstraints:NO];  
         ....  
 }  

If you comment, it dont crash, but the view is not centralized.

from carbonkit.

ermalkaleci avatar ermalkaleci commented on July 21, 2024

Library require auto-layout, anyway I will check what I can do.

from carbonkit.

paulocoutinhox avatar paulocoutinhox commented on July 21, 2024

I had added a README file on my sample repository to you see. Please, help me with this :(

from carbonkit.

ermalkaleci avatar ermalkaleci commented on July 21, 2024

You can not add CarbonSwipeRefresh as subview of tableView.
You need to add it on tableView container, like in the example

from carbonkit.

ermalkaleci avatar ermalkaleci commented on July 21, 2024
#import "ViewController.h"

@interface ViewController ()
{
    UITableView *tableView;
}

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.title = @"CarbonKit - Error - iOS7";

    tableView = [[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStylePlain];
    [self.view addSubview:tableView];

    [self enablePullToRefresh];
}

- (void)enablePullToRefresh
{
    self.refresh = [[CarbonSwipeRefresh alloc] initWithScrollView:tableView];
    [self.refresh setMarginTop:64];
    [self.view addSubview:self.refresh];
    [self.refresh addTarget:self action:@selector(pullToRefresh:) forControlEvents:UIControlEventValueChanged];
}

- (void)pullToRefresh:(id)sender
{
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [self.refresh endRefreshing];
    });
}

@end

from carbonkit.

ermalkaleci avatar ermalkaleci commented on July 21, 2024

CarbonSwipeRefresh can't be child of tableView. It must be child of tableview parent. You need to add a tableView inside a viewController not directly in UITableViewController
this is the header or your example:

#import <UIKit/UIKit.h>
#import <CarbonKit/CarbonKit.h>

@interface ViewController : UIViewController

@property (nonatomic, retain) CarbonSwipeRefresh *refresh;

- (void)enablePullToRefresh;
- (void)pullToRefresh:(id)sender;

@end

replace UITableViewController with UIViewController

from carbonkit.

paulocoutinhox avatar paulocoutinhox commented on July 21, 2024

Ok, i have made the correction on project. It is working now, but i need put the code

if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
{
    self.edgesForExtendedLayout = UIRectEdgeNone;
}

I need it?

from carbonkit.

ermalkaleci avatar ermalkaleci commented on July 21, 2024

I closed this issue

from carbonkit.

Related Issues (20)

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.