Hi, since IOS 7 beta i have a problem with a button
it is just not regocnized when i press it
local function confirm_e ( event )
if event.phase == “ended” then
if pwField1.text == mdfunc.db_getvaluepref (0,"!pw!","") then
native.setKeyboardFocus(nil)
mdfunc.db_insertpref (0,"!pw!",pwField1.text)
backBtnRelease()
else
local alert = native.showAlert( “Passwords wrong”,
“Try Again”, { “OK”})
end
end
end
confirm_b:addEventListener(“touch”,confirm_e)