Giter Club home page Giter Club logo

iosbasiccommondemos_first's Introduction

#这个仓库提供入门级别的、实用的各种资,我也会持续更新我的学习demo。此仓库对中低级iOSer有一定参考意义,大神请自行忽略。

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

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

##web和安卓对应版本:
https://github.com/huang303513/WebBasicCommonDemos
https://github.com/huang303513/AndroidBasicCommonDemos

##放在一个仓库太大、以后更新都放第二期仓库了。地址如下: https://github.com/huang303513/The-Demo-Of-Common-Study
imageivew的contentmodel属性设置看下图我再也不迷糊了:
image

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

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

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

//设置省市区拾取器
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;
```-->

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

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.