ios - How to open popup window contain UIview or image -
this question has answer here:
i wants open popup window on click of buttons.popup window should contain images or view @ runtime. please me. regards anupam
uialertview *alert = [[uialertview alloc] initwithtitle:@"popup title" message:@"this pop window/ alert" delegate:nil cancelbuttontitle:@"ok" otherbuttontitles:nil]; uiimageview *tempimageview=[[uiimageview alloc]initwithframe:cgrectmake(20,20,50,50)]; tempimageview.image=[uiimage imagenamed:@"abcd.png"]; [alert addsubview:tempimageview]; [alert show];
Comments
Post a Comment