TNotificationView *notificationView = [[[UINibnibWithNibName:@"TNotificationView"bundle:nil]instantiateWithOwner:selfoptions:nil]objectAtIndex:0];
notificationView.commmonArray = commonArray;
[notificationView selectedItem];
-(void)awakeFromNib
{
[self initData];
//self.medicineField.inputView = self.commonPickerView;
self.medicineField.inputAccessoryView = self.toolBar;
self.periodPicker = [[CustomizePickerViewalloc] initWithFrame:CGRectZero];
self.periodPicker.showsSelectionIndicator = NO;
self.periodPicker.delegate = self;
self.periodPicker.dataSource = self;
self.medicineField.inputView = self.periodPicker;
}