Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empleadores

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      Meta

      Empleador activo

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Meta | Empleos en Meta | Sueldos en Meta | Prestaciones en Meta
      Entrevistas en MetaEntrevistas para el cargo de IOS Developer en MetaEntrevista en Meta


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empleadores

      • Cuenta de empleador gratuita
      • Centro de empleador

      Información

      • Ayuda
      • Pautas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de autorización de cookies

      Trabaja con nosotros

      • Anunciantes
      • Oportunidades laborales
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor", "Worklife Pro", "Bowls" y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información desde adentro.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Entrevista para IOS Developer

      14 ene 2016
      Candidato de entrevista anónimo
      Menlo Park, CA
      Sin ofertas
      Experiencia positiva
      Entrevista difícil

      Solicitud

      Me postulé a través de un reclutador. El proceso tomó 2 semanas. Acudí a una entrevista en Meta (Menlo Park, CA) en dic 2015

      Entrevista

      I recently completed a full interview sequence with Facebook and thought it would be useful to recap it all for the next candidates coming down the pipeline. The way your interviewing experience starts is with a technical phone screen which lasts for about an hour. If you pass that you'll be invited out to Menlo Park. My interviewing day started at 9:45 a.m. and officially finished at 2 p.m. (but I didn't actually leave until closer to 3 p.m.). The recruiters are very upfront about what happens in the interview -- the initial "jedi" session which is a combination culture-fit and a supposed "easy" coding question, two "ninja" sessions which are in-depth coding / algorithm exercises (which I've recapped below), and one "pirate" session which is an architecture & design session. In terms of difficulty, I felt that the questions were relatively fair. They weren't as relentlessly challenging & tricky as what I've encountered at a traditional Google interview. but none of them were a particularly easy walk through the park. My own personal performance was probably negatively impacted by the stuffiness of the tiny interview room (of course adjusting the thermostat didn't seem to make a difference) and my general nerves (which are always in panic mode every time I'm doing these hard core technical screenings). On the flip side, I was really impressed with the working environment for employees, such as thoughtful touches such as all bathrooms being stocked with thoughtful & useful items (toothbrushes & paste, feminine care items, etc.), The campus is on the shores of San Francisco Bay, so depending on the weather (or the drought) you might be getting a view of water or of a marshy field. I have a feeling that commute times to campus can be frustratingly long, depending on where you live in the Bay Area. If you are able to handle whatever commute you end up having to do, the split campus *IS* a gorgeous and inspiring place. I say "split campus" because there's two different Facebook campuses on both sides of Highway 84. The older campus is on the East side, and the reason it feels like direct copy of the Downtown Disney mall in Anaheim is because it was done that way on purpose. The newer West building is a massive showpiece designed by Frank Gehry, and after my 5 hour interview party was over with, I was able to do a 10-15 minute walk around the beautiful rooftop gardens there with the recruiter. Weirdly enough, aside from a "how do you think you did?" follow-up from one of the recruiters a couple days after the interviewing day, I never heard anything back from anyone. In other words, it's been over a month and I never got the official rejection e-mail or phone call. My guess is the recruiters either lost track of me (which seems strange because they were so on top of arrangements prior to the interview) or they extended offers to one wave of candidates and let other "runner-up" candidates dangle while the first wave made decisions. That was really the only process hiccup along the way. Hopefully my experience flunking the Facebook interview will help you to prepare to pass your interviewing day. If you find any of the information in my interview review helpful, please let me know by voting "Yes" on the "Helpful?" question below (this helps to motivate me to be as detailed as possible).

      Preguntas de entrevista [5]

      Pregunta 1

      Phone interview question # 1: Given an array (for example, [ 1, 0, 2, 0, 0, 3, 4 ]), implement methods that 1. returns the number of non-zero elements (4) 2. moves the non-zero elements to the beginning of the array (the rest of the elements don't matter) -> both [ 1, 2, 3, 4, 0, 0, 0] and [ 4, 1, 3, 2, X, Y, Z ] are valid
      15 respuestas

      Pregunta 2

      given an array of words, how to eliminate the duplicates? You have a simple tree structure Ⓐ and its clone ⓐ. Each node in the tree has a pointer to it's parent as well as an array of its children. Given an original tree's node Ⓑ and cloned tree ⓐ, implement a method that returns ⓑ (the clone of Ⓑ). (Imagine finding the matching UIButton/UISlider/UIView in a separate cloned view controller.) Original Ⓐ ┏━┻━━┓ ◯ ◯ ┏┻┓ ┏━╋━┓ ◯ ◯ ◯ ◯ ◯ ┏┻┓ ┃ ◯ Ⓑ ◯ Clone ⓐ ┏━┻━━┓ ◯ ◯ ┏┻┓ ┏━╋━┓ ◯ ◯ ◯ ◯ ◯ ┏┻┓ ┃ ◯ ⓑ ◯
      8 respuestas

      Pregunta 3

      a telephone keypad has letters associated with each number (e.g. 2 = abc, 3 = def); given a passphrase of "fb1" (e.g. one that you might use to log into a bank account), come up with an algorithm that would assemble an array that contains all the different possible letter combinations that, when typed into a telephone dial pad, would be equivalent to the original passphrase.
      3 respuestas

      Pregunta 4

      iOS developers have a "dispatch_after(when, queue, block)" Grand Central Dispatch (GCD) function they can utilize but once it's set up, these calls can not be easily cancelled. Describe how you might implement a more convenient version of this named "cancellable_dispatch_after"
      6 respuestas

      Pregunta 5

      Pretend you're given a simple iOS app with a table view and a text field which looks like a search bar. It has methods to call to a remote server to get potential auto complete words. Describe how you would actually implement the iOS side.
      2 respuestas
      89

      Otras evaluaciones sobre las entrevistas para el cargo de IOS Developer en Meta

      Entrevista para Ios Software Engineer

      10 oct 2025
      Empleado anónimo
      Oferta aceptada
      Experiencia neutra
      Entrevista difícil

      Solicitud

      Acudí a una entrevista en Meta

      Entrevista

      Pretty standard interview process for FAANG/MANGA companies. Initial call with a recruiter, preliminary coding interview, on-site that spanned two days (because I asked) and a follow-up interview. The on-site interview consisted of 3 coding interviews, 1 behavioral, and 1 system design interview.

      Preguntas de entrevista [1]

      Pregunta 1

      Basic non dynamic programming leet code questions, that had an iOS bent to them.
      Responder pregunta

      Entrevista para IOS Software Developer

      8 abr 2025
      Candidato de entrevista anónimo
      Cupertino, CA
      Sin ofertas
      Experiencia positiva
      Entrevista difícil

      Solicitud

      Me postulé a través de un reclutador. El proceso tomó 2 semanas. Acudí a una entrevista en Meta (Cupertino, CA)

      Entrevista

      Interview process was smooth, it took one week from recruiter screening to technical screening. During the technical screening was asked two problems. Had a positive experience with the interviewer & the recruiter

      Preguntas de entrevista [1]

      Pregunta 1

      1) create a multi-set that implements a given protocol with add, remove & count methods. 2) leet code string compression
      Responder pregunta
      1

      Entrevista para Software Engineer (IOS)

      4 may 2026
      Empleado anónimo
      Oferta aceptada
      Experiencia positiva
      Entrevista difícil

      Solicitud

      Me postulé a través de una recomendación de un empleado. El proceso tomó 3 meses. Acudí a una entrevista en Meta en nov 2022

      Entrevista

      4 sets of interviews: 1. 2 Leetcode questions, one medium, one hard 2. System design (How would you implement the landing screen of IGDMs?) 3. 2 algorithms (But were structured as real iOS scenarios) 4. Personality interview (Talk about a conflict you had at work and how you resolved)

      Las mejores empresas en cuanto a "Remuneración y prestaciones" cerca de ti

      avatar
      Amazon
      3.7★Remuneración y prestaciones
      avatar
      Maze
      4.5★Remuneración y prestaciones