WeibinZheng commented on issue #1484: input type为date的时候选择时间问题
URL: https://github.com/apache/incubator-weex/issues/1484#issuecomment-418059644
 
 
   
   
   [input 
type为date的时候选择时间问题.zip](https://github.com/apache/incubator-weex/files/2345012/input.type.date.zip)
   文件已经上传,内有出问题机型视频及vue代码和原生修改截图,因为这个问题只有在我公司的一台手机上复现,在 http://dotwe.org/ 
及其他手机上并不能复现
   
   原生出问题代码(此方法不能调用)
   `-(void)done:(id)sender
   {
       [self hide];
       if (self.delegate && [self.delegate 
respondsToSelector:@selector(fetchDatePickerValue:)]) {
           NSString *value = @"";
           if([_type isEqualToString:@"time"])
           {
               value = [WXUtility timeToString:self.datePicker.date];
           }else if([_type isEqualToString:@"date"])
           {
               value = [WXUtility dateToString:self.datePicker.date];
           }
           [self.delegate fetchDatePickerValue:value];
       }
       
   }`

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to