├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── fishinwater │ │ └── fiyflowersbirdfishinsectapp │ │ └── ExampleInstrumentedTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── fishinwater │ │ └── fiyflowersbirdfishinsectapp │ │ ├── MainActivity.java │ │ └── activity │ │ ├── BaseActivity.java │ │ └── MenuActivity.java │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_main.xml │ └── activity_menu.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── app_icon.png │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── network_security_config.xml ├── ios └── 01 基本数据类型.md ├── object-c └── 1. oc 基础.md └── swift ├── 01 基本数据类型.md ├── 02 运算符.md ├── 03 控制流 for while switch.md └── 04 字符串 String.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/fishinwater/fiyflowersbirdfishinsectapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/androidTest/java/com/fishinwater/fiyflowersbirdfishinsectapp/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/fishinwater/fiyflowersbirdfishinsectapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/java/com/fishinwater/fiyflowersbirdfishinsectapp/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/fishinwater/fiyflowersbirdfishinsectapp/activity/BaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/java/com/fishinwater/fiyflowersbirdfishinsectapp/activity/BaseActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/fishinwater/fiyflowersbirdfishinsectapp/activity/MenuActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/java/com/fishinwater/fiyflowersbirdfishinsectapp/activity/MenuActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/layout/activity_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-mdpi/app_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /ios/01 基本数据类型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/ios/01 基本数据类型.md -------------------------------------------------------------------------------- /object-c/1. oc 基础.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/object-c/1. oc 基础.md -------------------------------------------------------------------------------- /swift/01 基本数据类型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/swift/01 基本数据类型.md -------------------------------------------------------------------------------- /swift/02 运算符.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/swift/02 运算符.md -------------------------------------------------------------------------------- /swift/03 控制流 for while switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/swift/03 控制流 for while switch.md -------------------------------------------------------------------------------- /swift/04 字符串 String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Precipitation-Tribe/iOS_interviews/HEAD/swift/04 字符串 String.md --------------------------------------------------------------------------------