Git Product home page Git Product logo

easyios's Issues

Model的db耦合度太高

model直接继承自MojoModel以获到db 和 自解析能力,感觉耦合度有点高,没有灵活多变的能力呀,也就无法使用进原有的项目。

MojoDatabase 问题

MojoDatabase这个开源项目早就已经停止维护,使用中发现对表关联的处理没有实现。希望能得到增强。

另外Easy使用其配合JSONModel,对基本数据类型(如NSInteger, CGFloat,BOOL等)支持力度还不够,希望得到改善。

关于pod依赖库

框架里面用了MKNetworkKit等三方库
pods里面只sp.dependency 'ReactiveCocoa'

其他的库为什么不用依赖的方式?

关于https的设置

请问一下,easyiOS这边有没有支持Https的设置,因为AFnetworking是有的。

Hi! 这里

@zhuchaowe
您好!这里有一个经过多次测试,修复多个版本的下拉上啦刷新的组件,带有多种好看的样式,如果觉得可以,希望采纳一下!谢谢

Jack

safeSubarrayWithRange 越界判断bug

- (NSArray *)safeSubarrayWithRange:(NSRange)range
{
	if ( 0 == self.count )
		return nil;

	if ( range.location >= self.count )
		return nil;

	if ( range.location + range.length >= self.count )
		return nil;
	
	return [self subarrayWithRange:NSMakeRange(range.location, range.length)];
}

应为

if ( range.location >= self.count )
     return nil;

 if ( range.location + range.length > self.count )
 	return nil;
 
 return [self subarrayWithRange:NSMakeRange(range.location, range.length)];

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.