File tree Expand file tree Collapse file tree 7 files changed +29
-10
lines changed
ICInputAccessory.xcodeproj Expand file tree Collapse file tree 7 files changed +29
-10
lines changed Original file line number Diff line number Diff line change
1
+ ## v1.0.0
2
+
3
+ Initial release written in Swift 2.1.
4
+
5
+ #### Added
6
+
7
+ * ` ICKeyboardDismissTextField ` with an accessory view to dismiss keyboard.
8
+ * ` ICTokenField ` , a text field that groups input texts as tokens.
Original file line number Diff line number Diff line change 402
402
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
403
403
GCC_WARN_UNUSED_FUNCTION = YES;
404
404
GCC_WARN_UNUSED_VARIABLE = YES;
405
- IPHONEOS_DEPLOYMENT_TARGET = 9.2 ;
405
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0 ;
406
406
MTL_ENABLE_DEBUG_INFO = YES;
407
407
ONLY_ACTIVE_ARCH = YES;
408
408
SDKROOT = iphoneos;
440
440
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
441
441
GCC_WARN_UNUSED_FUNCTION = YES;
442
442
GCC_WARN_UNUSED_VARIABLE = YES;
443
- IPHONEOS_DEPLOYMENT_TARGET = 9.2 ;
443
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0 ;
444
444
MTL_ENABLE_DEBUG_INFO = NO;
445
445
SDKROOT = iphoneos;
446
446
VALIDATE_PRODUCT = YES;
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >APPL </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >0.1 .0 </string >
18
+ <string >1.0 .0 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "ICInputAccessory"
3
- s . version = "0.1.0"
4
- s . summary = "A customized input accessory UI to dismiss keyboard."
3
+ s . version = "1.0.0"
4
+ s . summary = "Customized text fields used in the iCook app."
5
+ s . description = <<-DESC
6
+ ICKeyboardDismissTextField:
7
+ * An input accessory view with a button to dismiss keyboard.
5
8
9
+ ICTokenField:
10
+ * A horizontal scrolling UI that groups input texts.
11
+ * Easy to add and delete tokens.
12
+ * Customizable icon and colors.
13
+ DESC
14
+
15
+ s . screenshots = "https://raw.githubusercontent.com/polydice/ICInputAccessory/gh-pages/screenshots/ICKeyboardDismissTextField.png" ,
16
+ "https://raw.githubusercontent.com/polydice/ICInputAccessory/gh-pages/screenshots/ICTokenField.png"
6
17
s . homepage = "https://github.com/polydice/ICInputAccessory"
7
18
s . license = { type : "MIT" , file : "LICENSE" }
8
19
s . authors = "bcylin" , "trisix"
Original file line number Diff line number Diff line change 217
217
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
218
218
GCC_WARN_UNUSED_FUNCTION = YES;
219
219
GCC_WARN_UNUSED_VARIABLE = YES;
220
- IPHONEOS_DEPLOYMENT_TARGET = 9.2 ;
220
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0 ;
221
221
MTL_ENABLE_DEBUG_INFO = YES;
222
222
ONLY_ACTIVE_ARCH = YES;
223
223
SDKROOT = iphoneos;
259
259
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
260
260
GCC_WARN_UNUSED_FUNCTION = YES;
261
261
GCC_WARN_UNUSED_VARIABLE = YES;
262
- IPHONEOS_DEPLOYMENT_TARGET = 9.2 ;
262
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0 ;
263
263
MTL_ENABLE_DEBUG_INFO = NO;
264
264
SDKROOT = iphoneos;
265
265
TARGETED_DEVICE_FAMILY = "1,2";
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >0.1 .0 </string >
18
+ <string >1.0 .0 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change 1
1
PODS:
2
- - ICInputAccessory (0.1 .0)
2
+ - ICInputAccessory (1.0 .0)
3
3
4
4
DEPENDENCIES:
5
5
- ICInputAccessory (from `./`)
@@ -9,6 +9,6 @@ EXTERNAL SOURCES:
9
9
:path: "./"
10
10
11
11
SPEC CHECKSUMS:
12
- ICInputAccessory: 99d2957193e587e3d82c4b3a045c58c3b02c120c
12
+ ICInputAccessory: 341225aaa67a035b266880a5795001b363d1b1da
13
13
14
14
COCOAPODS: 0.39.0
You can’t perform that action at this time.
0 commit comments