Would be preferable if you try to implement it using the Model class. Something like this:-
@interface Student : NSObject
@property (nonatomic, retain) NSString * studentID;
@property (nonatomic, retain) NSString * studentForeName;
@property (nonatomic, retain) NSString * studentSurname;
@end
and then save the entered data to this objects and tranfer this object or collect the multiple entries to display tot he tableview.
This process will help you to add new attributes or while inserting to the DB also. Or when trying to send it to server.
Also try to follow the MVC pattern in your coding which will help you a lot for scalability.