|
2h
|
|
awarded | Yearling |
|
2h
|
|
answered | Calling UILocalNotification from Main.m |
|
2h
|
|
comment |
Calling UILocalNotification from Main.m The app is ostensibly running when this happens right? Are you handling notifications in your AppDelegate? |
|
May
20 |
|
comment |
Memory leak in WebView There is no policy to violate (regarding hidden APIs or whatnot), you just don't have any guarantees that the underlying system wont change in an update. Potentially you could wrap this code in an API level check and only allow it for new SDK revisions after testing with them. |
|
May
19 |
|
comment |
Animating a UIView in a .xib file Not quite. You'll to point the code to the 'view' object which you've hooked up from IB and adjust the frame to the desired size. So where the above code says view.frame it should be whatever you've named your view, and the line where it says // adjust size of frame to desired value you should actually adjust the frame sizes (i.e., frame.size.height += 100) |
|
May
19 |
|
answered | Animating a UIView in a .xib file |
|
May
18 |
|
comment |
Android Hello-World compile error: Intellij cannot find aapt It's not really a fork, it is based on the Early Access Program build. Once that EAP build becomes mainline IntelliJ it will have the same features Android Studio has. |
|
May
18 |
|
comment |
Easy way to make an Android+Scala project with IntelliJ 12? > I suppose this would be easier in the future to integrate Scala with this new IntelliJ-based IDE I'm hoping you're right! Android is so nice, but Java isn't really that fun to work in. |
|
May
13 |
|
comment |
Unrecognized selector for NSManagedObject base class God damn Xcode is the worst shit ever. What a terrible solution. But totally worked for me as well. |
|
May
12 |
|
comment |
SSH File Transfer: Unix Client, Windows Server. HEADACHE This is probably the wrong exchange for this question, maybe try: serverfault.com or superuser.com |
|
May
12 |
|
comment |
Getting a youtube download URL from existing url? Looks like this class would be the place to start: code.google.com/p/android-youtube-player/source/browse/trunk/… Specifically the: calculateYouTubeUrl method |
|
May
12 |
|
answered | Getting a youtube download URL from existing url? |
|
May
11 |
|
answered | How to resume (or launch) my app after a phone call ends in iOS (my app did *not* initiate the phone call)? |
|
May
10 |
|
comment |
Pros and Cons for HaXe and Kivy On my Mac there is an option to create Mac apps: imgur.com/ie4SRqY I think for Windows apps you can write the code in Xamarin and export the project to Visual Studio to do the final build (which is also how I think you have to make a Windows Phone app with Xamarin as well). |
|
May
10 |
|
answered | Pros and Cons for HaXe and Kivy |
|
May
10 |
|
answered | Populate Table View with an Array of Dictionaries |
|
May
10 |
|
comment |
iOS: Saving to Data Structure What's the advantage over self.newDataClass vs using the synthesized property newDataClass directly? |
|
May
5 |
|
comment |
Differences between iOS and Android GUIs Regarding the home screen I find the opposite to be true. The iOS disorganized homescreen is extremely frustrating. It might be easier to use the first time, but once you get more than a few screens of apps it is quickly disorganized. On Android a user can put their most frequently used apps on their homescreen and the rest stay completely organized in the app drawer. Much easier to find. |
|
May
3 |
|
comment |
UILabel justify left and right NSTextAlignmentLeft instead of UITextAlignemtnLeft seems to work and is not deprecated |
|
Apr
23 |
|
comment |
How to get coordinates of address from Python Just ended up using this instead: code.xster.net/pygeocoder/wiki/Home |