I beginner in iOS. I try extend UILocalNotification. My class below.
@interface FSCustomNatification : UILocalNotification
typedef enum {
    FSCustomNatifi         
        
By the looks of your error message UILocalNotification is part of a class cluster. The docs don't say (that I can see quickly) but it seems unlikely that you should subclass UILocalNotification.
Instead, you should make use of the userInfo provided by UILocalNotification to add any extra information you want to be available when the notification fires.