Files
2025-09-18 17:55:52 -04:00

28 lines
632 B
Objective-C

//
// RBBirthdayPicker.h
// RobloxMobile
//
// Created by Kyler Mulherin on 7/15/15.
// Copyright (c) 2015 ROBLOX. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface RBBirthdayPicker : UIView <UIPickerViewDelegate, UIPickerViewDataSource>
@property (nonatomic, getter=getBirthday, readonly) NSString* playerBirthday;
@property (nonatomic, getter=getWasBornToday, readonly) BOOL wasBornToday;
-(BOOL) isValid;
-(BOOL) userUnder13;
-(void) setValidationBlock:(void(^)())callback;
-(void) markAsValid;
-(void) markAsNormal;
-(void) markAsInvalid;
- (BOOL)becomeFirstResponder;
- (BOOL)resignFirstResponder;
@end