The ModMyTM Family of Sites:
ModMyMotoModMyiModMyGphone




 
 
Register or Connect with Facebook

2.2 Unlock / Jailbreak OS X | Discuss AppStore Apps | Browse / Search Cydia | MMi Cydia Stats




  Apple Forums & iPhone Forums, Mods, Hacks, News, Themes, Downloads, and more! | ModMyi.com > 3rd Party Apps For iPhone | iPod Touch > iPhone / iPod Touch SDK | Development Discussion
Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-17-2008, 06:59 PM
iPhone? More like MyPhone
 
Join Date: Dec 2007
Posts: 211
Thanks: 12
Thanked 40 Times in 34 Posts
View locations

hi,
so here I go with another really noobish question:
What I wanted to do today is to slide in a view from the bottom of the screen. the view is a full-screen view, just like it's superview.

so, to simplify things, I tried just putting the view (let's call it view2) exactly over it's superview (view1). If I managed to do that it should be easy to get the view below the screen (by just adding it's height to the y-coordinate) and from there I can slide it back up.
putting the view exactly over the superview is where I got stucked.
first I tried something like this

UIView *view2 = [[UIView alloc] initWithFrame:view1.frame];

that, of course, didn't work because the coordinates of the top-left corner are based on the coordinate-system of the superview. however, I then tried this:

UIView *view2 = [[UIView alloc] init];
view2.frame = [view1 convertRect:view1.frame toView:view2];

I thought this has to work. I was surprised that it did not.
my question is: why did my second attempt not work? strangely, it does work when I add

view2.center = [view1 convertPoint:view1.center toView:view2];

but this does not help me as long as I don't understand WHY one works and the other doesn't.

would it be bad coding style to just convert everything to the coordinate system of the window itself? would make things a lot easier for me I guess.
what's the best attempt to do that? what's the best way to work with coordinates? how do I put a view below another? as you can see this is really basic stuff but I'm having a hard time with it

I really need some help seeing clearly with all this. thanks a lot :-)

Last edited by BlackWolf; 03-17-2008 at 07:01 PM..
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #2 (permalink)  
Old 03-17-2008, 11:51 PM
NetMage's Avatar
Developer
 
Join Date: Aug 2007
Device + Firmware: iPhone 2.2.0
Operating System: Windows XP / OS X
Location: Virginia
Posts: 1,206
Thanks: 43
Thanked 197 Times in 158 Posts

I would use a UITransition to handle the slide in.
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #3 (permalink)  
Old 03-18-2008, 05:55 AM
iPhone? More like MyPhone
 
Join Date: Dec 2007
Posts: 211
Thanks: 12
Thanked 40 Times in 34 Posts

Quote:
Originally Posted by NetMage View Post
I would use a UITransition to handle the slide in.
hi,
thanks for your quick reply.

I guess you mean CATransition? That's the only thing I was able to find.
Unfortunatly, I'm not really familiar with the whole Core Animation stuff. That's why i wanted to use the UIView's animation methods in the first place - they are pretty easy to use. Maybe you could just give a quick little example how I would go about using CATransition? I understand it's properties and everything, I just don't really know what to do with the CATransition object. I'm reading my way through the core animation guide, but I have so much to learn about cocoa it's really hard to learn all at once

oh, and btw: still I'm asking myself why
view2.frame = [view1 convertRect:view1.frame toView:view2];
doesn't produce a view that is the same size and position as its superview. in my understanding of the frame property this is exactly what should happen. any ideas on this?

thanks :-)
blackwolf

PS: doesn't really fit into the topic, but is there any easy way to get the window object of a UIView? I did it using the superview property and stuff but that gets really ugly, because it results in something like [[[self.view superview] toolbarController] superview] ... any easy way to do this?

PPS: another stupid, topic-unrelated question: When I have a UITextField and a user taps into it a keybaord appears. is there any way to hide that keyboard again, for example when the user taps anywhere else on the screen, or - in my case - I want to hide the keyboard before I start an animation.

PPPS: I know, you all gonna kill me. has anyone an idea how to create a (pseudo-)random number?

Last edited by BlackWolf; 03-18-2008 at 10:14 AM..
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
  #4 (permalink)  
Old 03-18-2008, 11:07 AM
Green Apple
 
Join Date: Sep 2007
Posts: 43
Thanks: 0
Thanked 10 Times in 5 Posts

No, he means there is a transition type that allows changing between views. There are a bunch of transition types, one of them is slide from any edge (you specify the direction.) If your parent view type is a UITransition view, there are methods that allow you to say 'transitionTo: newview' and it just slides in. Pretty slick, no?

http://idevdocs.com/forum/showthread.php?t=42

And for a whole bunch of animation types in demo/test view form, see:
http://idevdocs.com/forum/showthread.php?t=181 (grab ver 0.4 later in the thread.)
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following User Says Thank You to Cobra For This Useful Post:
BlackWolf (03-19-2008)
  #5 (permalink)  
Old 03-19-2008, 12:36 AM
NetMage's Avatar
Developer
 
Join Date: Aug 2007
Device + Firmware: iPhone 2.2.0
Operating System: Windows XP / OS X
Location: Virginia
Posts: 1,206
Thanks: 43
Thanked 197 Times in 158 Posts

PPPS: http://www.macosxguru.net/article.ph...31229194721194

If you are using the SDK, look up Modal View Controllers on the proper way to handle this.

Last edited by NetMage; 03-19-2008 at 12:36 AM.. Reason: Automerged Doublepost
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
The Following User Says Thank You to NetMage For This Useful Post:
BlackWolf (03-19-2008)
  #6 (permalink)  
Old 03-19-2008, 07:22 AM
iPhone? More like MyPhone
 
Join Date: Dec 2007
Posts: 211
Thanks: 12
Thanked 40 Times in 34 Posts

the modal view controller and random number thing worked very fine, thanks to both of you.
Digg StumbleUpon Delicious Reddit Newsvine Google Yahoo Thanks Reply With Quote
Reply

  Apple Forums & iPhone Forums, Mods, Hacks, News, Themes, Downloads, and more! | ModMyi.com > 3rd Party Apps For iPhone | iPod Touch > iPhone / iPod Touch SDK | Development Discussion

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


Go to Top
ModMyI

All times are GMT -6. The time now is 10:55 PM. Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 | Dedicated Server Hosting by SingleHop | Copyright © 2007-09 by ModMy, LLC. All rights reserved.

RSS / Contact Us / / ModMyi Home / Archive / Privacy Statement / Top


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408