Re: Apple Developer Support?

2013-09-10 Thread Kévin Vavelin
It's the correct mail but I don't know what's going on your membership, try to call them directly Sent from my iPhone On 10 Sep 2013, at 15:15, Dave d...@looktowindward.com wrote: Hi All, I've been trying to contact Apple Developer about my iOS and Mac Developer Memberships - there is

Account framework

2013-06-15 Thread Kévin Vavelin
Hi there, I want to connect to some API using OAuth2 authentification in my application and I see that Account Framework got a method for this. So I want to use the Account framework for connecting to these API and store the account into the database but I don’t know how I can do it and see no

Re: Account framework

2013-06-15 Thread Kévin Vavelin
...@mooseyard.com wrote: On Jun 15, 2013, at 12:21 PM, Kévin Vavelin vavelinke...@icloud.com wrote: I want to connect to some API using OAuth2 authentification in my application and I see that Account Framework got a method for this. So I want to use the Account framework for connecting

Re: Account framework

2013-06-15 Thread Kévin Vavelin
j...@mooseyard.com wrote: On Jun 15, 2013, at 12:21 PM, Kévin Vavelin vavelinke...@icloud.com wrote: I want to connect to some API using OAuth2 authentification in my application and I see that Account Framework got a method for this. So I want to use the Account framework

Re: Account framework

2013-06-15 Thread Kévin Vavelin
a better framework for connexion like AFNetwork :) Vavelin Kévin Twitter | Blog | LinkedIn Entrepreneur Developer OS X / iOS On 16 Jun 2013, at 00:35, Mike Abdullah mabdul...@karelia.com wrote: On 15 Jun 2013, at 20:52, Kévin Vavelin vavelinke...@icloud.com wrote: Ouch.. Looks like we have

Re: Account framework

2013-06-15 Thread Kévin Vavelin
PM, Kévin Vavelin vavelinke...@icloud.com wrote: I’ll take a look on your github link and see if it can help me. I try to figure out why is there so much code to write for just getting a response from the server with the authorisation token and then resend it. OAuth is an awful

NSInputStream get NSStreamEventEndEncountered without reason

2013-05-04 Thread Kévin Vavelin
I use SocketIO project on my iOS app to connect to my node.js server and everything works great until I choose to connect to facebook. When I connect to Facebook I send some data to my server and he answer with some data like user already connected, user created in database etc. And after that,

Conserve size of UIButton after CATrasform3DScale

2013-04-06 Thread Kévin Vavelin
Hi there, I have an animation in my app and I want to know how I can set the frame of my UIButton as the same I have after my CATransform3DScale and how can I do that with my auto layout cause I can't change my width size with auto layout enable. The only way is to remove the layout constraint

Re: Custom drawn window like Game Center

2013-02-18 Thread Kévin Vavelin
You can take a look on WWDC 2012 video session that talk about custom UIView ;) they take find my friends as an example. It's not from scratch, it's all about image pattern and good code. Vavelin Kevin OS X / iOS Developer Entrepreneur On 19 févr. 2013, at 02:16, Nick eveningn...@gmail.com

How to add page in UIScrollView

2013-02-12 Thread Kévin Vavelin
Hi there, I have to do a pdf generator with custom label, so in my storyboard I have a UIScrollView with a UIView inside it, and if my UIView is full, I want to add another UIView and fill it with other label that is not already in. How can I add another page in my UIScrollView with another

Re: am I being called on the correct GCD queue?

2013-02-09 Thread Kévin Vavelin
I think dispatch_get_current_queue was replace with dispatch_get_main_queue but i'm not sure... Can you check it ? Vavelin Kevin OS X / iOS Developer Entrepreneur On 9 févr. 2013, at 21:11, Matt Neuburg m...@tidbits.com wrote: If dispatch_get_current_queue() is deprecated, how can I check

Re: am I being called on the correct GCD queue?

2013-02-09 Thread Kévin Vavelin
So, try dispatch_get_specific method instead, I'll take a look on it. Vavelin Kévin Twitter | Blog | LinkedIn Entrepreneur Developer OS X / iOS ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator

Re: Full-time position for experienced Mac app developer in San Diego, CA

2013-01-07 Thread Kévin Vavelin
I'm interested but I'm based in France. Can you tell me more about the job ? Vavelin Kévin Twitter | Blog | LinkedIn Entrepreneur Developer OS X / iOS ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or

Re: Editing multiple selections with bindings

2013-01-01 Thread Kévin Vavelin
You have to resignFirstResponder when you hit outside (juste handle single tap in your controller) Happy new year. Best Regards, Vavelin Kevin OS X / iOS Developer Entrepreneur ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not

Create a socket.io connection to node.js server

2012-12-07 Thread Kévin Vavelin
Hi there, I want to create a socket.io tube between my iOS app and my server who's running on node.js, I want to implement it for getting some now.js method and get many many feature like my web page and my native app. I tried CFStreamCreatePairWithSocketToHost(kCFAllocatorDefault,

Get NowJS work

2012-11-01 Thread Kévin Vavelin
Hi there, I want to get NowJS working well with my app, I know I have to create a socket with socket.io like NowJS do, I just create a NowJS code and translate it into ObjC but it seems that it doesn't work at all… Do you have any idea about how to do it ? Cordially, Vavelin Kévin Twitter |

Passing data between view

2012-09-01 Thread Kévin Vavelin
Hi there, I'm pretty confuse right now 'cause I can't pass my data to my masterView and I don't know why… I have a master detail view, I don't want to use the detail view so I delete it. I create a new view with a textField and I want to do this action : When I hit the + button on the top

Re: Passing data between view

2012-09-01 Thread Kévin Vavelin
I'm not sure if i'm understanding well. When I call my AddViewController, I just need to set nameCategory. but how ? If i'm not specified the parentView I can't call setNameCategory or [categoryArray insertObject:atIndex:] no ? I understand much with code :/ if you have an example for helping

ASIFormDataRequest doesn't fetch responseString

2012-08-30 Thread Kévin Vavelin
Hi there, I try to fetch a responseString from my request and I just can't get it working well… Everything is good but my request is send in asynchronous mode and I used block for fetching my string. This method doesn't working well so I ask you if you can help me more ;) Here's the code :

Question about dispatch_timer function

2012-04-25 Thread Kévin Vavelin
Hi there, I've a question about the dispatch_timer function. I try to make a strobe flash on my iPhone app and for that i used an NSTimer but a friend of mine say that it's better to use dispatch function. So i was looking and try to implement something. I explain my code before post anything