563 reputation
215
bio website coming.soon
location City of Three Rivers, Passau
age 26
visits member for 1 year, 1 month
seen 5 hours ago
stats profile views 54

Working as an iOS Developer, i previously graduated as Bachelor and Master student at HDU, Germany. My goal is to create the ultimate user experience with the ultimate code and style, either on OSX or iOS or other SDKs in the future.


May
14
comment How to detect which 3rd sdk use UDID?
@epatel crazy horse!!! :-) I only wanted to keep in mind, that runtime checks do not save you from being rejected. strings is by far now the best solution to find out which framework/lib is responsible for a rejection, so you don't have to update all of your libs, because that would probably mean a lot of time of adaption to the new api of these libs
May
14
comment How to detect which 3rd sdk use UDID?
@epatel You'll get rejected if uniqueIdentifier exists in your code/lib, even if you never call it. So a symbolic breakpoint doesn't help, if a lib/framework doesn't call it, but uses uniqueIdentifier in code!!!
Mar
6
comment Custom cell in UITableView is not displaying properly - only last cell is populated
than accept, if you feel it was the right answer
Mar
5
comment Custom cell in UITableView is not displaying properly - only last cell is populated
Also you have to set a custom class for your cell nib and set your outlets there. Then in cellForRowAtIndexPath: don't cast the dequeueReusableCellWithCellIdentifier to UITableViewCell, but to your own class. Only then you can properly set the views and labels of your custom nib-cell!!!
Mar
5
comment Custom cell in UITableView is not displaying properly - only last cell is populated
don't pack // assigns current row's labels NSArray * customCellText = [Model cellText:indexPath.row]; dinnerItem.text = customCellText[0]; dinnerDescription.text = customCellText[1]; dinnerTime.text = customCellText[2]; cell = customCell; in the if context!!! If you reuse, your cell isn't updated with the appropriate infos
Mar
5
comment Custom cell in UITableView is not displaying properly - only last cell is populated
you are overriding cell with a new object (whatever customCell is?!?!). Can you please show where you set customCell-variable? is it an instance variable? THIS IS IMPORTANT. Although I can tell you, overriding cell makes cell alloc init senseless and useless. You should delete cell = customCell;, otherwise it won't work...
Mar
4
comment Custom cell in UITableView is not displaying properly - only last cell is populated
What do you mean by cell = customCell;? What is customCell and can you show us the code where you are setting customCell?
Mar
1
comment Efficient custom tiled maps with custom zoom levels and zoom factors
As I cannot give anyone else the bounty, you'll get it because of your great support, that you showed me. You deserve it.
Mar
1
comment Efficient custom tiled maps with custom zoom levels and zoom factors
thanks a lot. I realized, my project is to specific to use yours, but good job. Other ones are gone a use it...
Feb
27
comment Scaling up CALayer with sublayers leads to small gaps between sublayers
I thought of something like that, but in fact it was rather simpler. Check out the answer :-)
Feb
24
comment How does CATiledLayer know when to provide a new tile?
thanks for your quick response. My email address is renneronline at me dot com. Wow appreciate the code. Think that saves me a lot of time.
Feb
23
comment CATiledLayer requests the same tile multiple times
@fishinear you switched to your own solution? I need that too. Can you help me? You can contact me via email.
Feb
23
comment How does CATiledLayer know when to provide a new tile?
@fishiear: it's been a while since your question? I really do have the same problem. Did you solve it? I have to accomplish a zoom factor of 3 and am also looking for my own solution. But I don't know if it's good. What did you do finally? I would like to get in contact with you. You can write me a mail. It is very important for me.
Feb
22
comment Efficient custom tiled maps with custom zoom levels and zoom factors
CATiledLayer would be really perfect. But we have a zoom-factor of 3, instead of 2, like it is in nearly all map views and also in CATiledLayer
Feb
1
comment Perform animations after one another, hit by KVO (after async URLRequest)
thats right. I've thought about it and now I understand, what u mean. With the notifications I can control the actions, that have to be done, after animations are done. What I do after the observe method is called: I change (insertion/deletion/update) an array, based on the new Values, coming in in the KVO method. What I've come up with today: I observe the mutableArray either, and get nice change notifications. With these notifications I want to start the animations each time. (I'm mimicking a UITableView in concept, with concurrent inserts/deletes/updates of views - in a scrollView)
Jan
31
comment Perform animations after one another, hit by KVO (after async URLRequest)
that looks good. I think I try this. The other option I thought would be nice is to use a block and save actions for later execution, when an animation hast ended
Jan
31
comment Perform animations after one another, hit by KVO (after async URLRequest)
that doesn't work, because with KVO the observer method gets called automatically. Ah and I forgot to mention, the KVO method gets called like random, dependent on which data comes first in.
Jan
11
comment Integrating Facebook Docset with Xcode
@Endama Why does it work by installing the Facebook Framework directly from the .pkg? It moves it to /Library/..., not to ~/Library/... (notice the "~" which stands for your users dir)
Sep
10
comment Custom alarm app play sound from media library on interruption by local notification
i really understand that what you want! And I know how to do it and I explained it to you. I cannot write the whole code. I think the App is playing a silent sound until the reminder will start (hack to stay background executed). Then a local push is sent and then the self choosen track is played.
Sep
9
comment Cannot remove file from “staging phase” in git
That is the right answer. +1