Code Monkey home page Code Monkey logo

ios-study-demo's Introduction

#这个仓库的目标就是要学iOS,你看我就够了,提供从入门到进阶的各种资料。如果你觉得好、请多多宣传。我也会在接下来的生涯中持续更新我的学习demo。

##这个仓库里面的一般都是实用性的,如果要学习一些进阶的(汗颜,吹牛逼了、其实高级的东西我也正在学习中),可以看我的其他仓库。

##在工作中或者网上遇到一些好的博客的时候,我会把它自己实现一下并且在每个demo的项目中通过warning的形式指定demo的博文地址(后期部分,前期的我没有加)。

##带字的都是别人下的、我只是下载觉得好,如果不适,请联系我。其他的基本上都是我iOS生涯各个时期的学习Demo,基本都是我自己敲的或者学的,希望能对你有所帮助。其中有一些随着时间的流逝丢了,可惜。

##我会持续更新持续总结。。。欢迎大家关注、star、fork。。。。

//==================省市区三级连滚一句话调用====================

省市区三级连滚一句话调用

省市区三级连滚一句话调用用法:

//设置省市区拾取器
MYAddressPickerView *addrPickView = [[MYAddressPickerView alloc]initWithFrame:CGRectMake(0, 0, __kScreenWidth, 256)];
//做数据初始化
[addrPickView initData];
//确定回调
[addrPickView setAddressCallback:^(NSString *addressCode,NSString *address,NSDictionary *addressDict) {
self.addressDic = addressDict;
NSLog(@"选中的地址信息%@",self.addressDic);
self.addressTextField.text = address;
[self.addressTextField resignFirstResponder];
}];
//取消回调
[addrPickView setCancelCallback:^{
[self.addressTextField resignFirstResponder];
}];
self.addressTextField.inputView = addrPickView;
```-->

//=============================================

ios-study-demo's People

Contributors

huang303513 avatar

Watchers

James Cloos avatar  avatar

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.