Commit 06d63e02 authored by zooble's avatar zooble Committed by GitHub

Merge pull request #156 from ianlin/ios-dont-show-picker-when-init

ios: do not show picker at the end of initialising
parents 64860d7c f575ad33
...@@ -83,13 +83,6 @@ RCT_EXPORT_METHOD(_init:(NSDictionary *)indic){ ...@@ -83,13 +83,6 @@ RCT_EXPORT_METHOD(_init:(NSDictionary *)indic){
dispatch_async(dispatch_get_main_queue(), ^{ dispatch_async(dispatch_get_main_queue(), ^{
[self.window addSubview:_pick]; [self.window addSubview:_pick];
[UIView animateWithDuration:.3 animations:^{
[_pick setFrame:CGRectMake(0, SCREEN_HEIGHT-self.height, SCREEN_WIDTH, self.height)];
}];
}); });
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment