Short way to get file name with one line of code. Asset have a property for accessing file name.
NSString*FileName=[asset valueForKey:@"filename"];
NSLog(@"File name %@",FileName);
Its done.
Note: Accepted answer takes lots of time to load a phasset but it works.