objective c - How come my uitextfield(s) keeps being disabled after model? -


i made app wife track inventory. has couple of view controllers enter new item, display items, search items, , display selected item. after switching through each view couple of times (no particular order) of textfields become disabled (you cannot select them change value) across of view controllers. buttons still work however. have setup when user enters info particular cell, saves memory if switch views , come back, cells data in viewdidload method. please help!

*edit - using storyboard bunch of segues (i'm new programming , self taught, idk if right way or not)... here pic of storyboard

http://i.imgur.com/at3pr0i.png

ok, @ storyboard, think see problem. if storyboard looks spilled spaghetti on it, it's not designed correctly. specifically, looks you're going "backwards" (to controllers you've been to) using segues -- that's not good. segues instantiate new controllers! so, if go around in circle few times, you're adding more , more controllers project. go backwards using segues, need use unwind segue -- it's 1 exception rule segues instantiate new controllers. other ways go backwards, without segues, popping navigation controllers, , dismissing modal controllers.

i can't diagnose immediate problem without lot more information, redesigning storyboard using unwind segues fix problem.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -