Skip to content

Commit

Permalink
Added SearchTableViewDemo
Browse files Browse the repository at this point in the history
  • Loading branch information
ioscreator committed Jul 15, 2013
1 parent f729785 commit be582de
Show file tree
Hide file tree
Showing 18 changed files with 774 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -69,6 +69,7 @@ AddItemTableViewDemo - http://ioscreator.com/add-rows-to-tableview
PinchImageDemo - http://ioscreator.com/scale-image-with-uipinchgesturerecognizer
DeleteItemTableViewDemo - http://ioscreator.com/delete-rows-from-tableview
OpenPDFDocument - http://ioscreator.com/open-pdf-documents-in-ios
SearchTableViewDemo - http://ioscreator.com/add-searchbar-to-tableview



Expand Down
305 changes: 305 additions & 0 deletions SearchTableViewDemo/SearchTableViewDemo.xcodeproj/project.pbxproj
@@ -0,0 +1,305 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {

/* Begin PBXBuildFile section */
E247A258179278F600738F87 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E247A257179278F600738F87 /* UIKit.framework */; };
E247A25A179278F600738F87 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E247A259179278F600738F87 /* Foundation.framework */; };
E247A25C179278F600738F87 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E247A25B179278F600738F87 /* CoreGraphics.framework */; };
E247A262179278F600738F87 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E247A260179278F600738F87 /* InfoPlist.strings */; };
E247A264179278F600738F87 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E247A263179278F600738F87 /* main.m */; };
E247A268179278F600738F87 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E247A267179278F600738F87 /* AppDelegate.m */; };
E247A26A179278F600738F87 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = E247A269179278F600738F87 /* Default.png */; };
E247A26C179278F600738F87 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E247A26B179278F600738F87 /* Default@2x.png */; };
E247A26E179278F600738F87 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E247A26D179278F600738F87 /* Default-568h@2x.png */; };
E247A271179278F700738F87 /* MainStoryboard.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E247A26F179278F700738F87 /* MainStoryboard.storyboard */; };
E247A27C17928F2300738F87 /* SearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E247A27B17928F2300738F87 /* SearchViewController.m */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
E247A254179278F600738F87 /* SearchTableViewDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SearchTableViewDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
E247A257179278F600738F87 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
E247A259179278F600738F87 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
E247A25B179278F600738F87 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
E247A25F179278F600738F87 /* SearchTableViewDemo-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "SearchTableViewDemo-Info.plist"; sourceTree = "<group>"; };
E247A261179278F600738F87 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
E247A263179278F600738F87 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
E247A265179278F600738F87 /* SearchTableViewDemo-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "SearchTableViewDemo-Prefix.pch"; sourceTree = "<group>"; };
E247A266179278F600738F87 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
E247A267179278F600738F87 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
E247A269179278F600738F87 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
E247A26B179278F600738F87 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
E247A26D179278F600738F87 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
E247A270179278F700738F87 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = en; path = en.lproj/MainStoryboard.storyboard; sourceTree = "<group>"; };
E247A27A17928F2300738F87 /* SearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchViewController.h; sourceTree = "<group>"; };
E247A27B17928F2300738F87 /* SearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchViewController.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
E247A251179278F600738F87 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E247A258179278F600738F87 /* UIKit.framework in Frameworks */,
E247A25A179278F600738F87 /* Foundation.framework in Frameworks */,
E247A25C179278F600738F87 /* CoreGraphics.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
E247A24B179278F600738F87 = {
isa = PBXGroup;
children = (
E247A25D179278F600738F87 /* SearchTableViewDemo */,
E247A256179278F600738F87 /* Frameworks */,
E247A255179278F600738F87 /* Products */,
);
sourceTree = "<group>";
};
E247A255179278F600738F87 /* Products */ = {
isa = PBXGroup;
children = (
E247A254179278F600738F87 /* SearchTableViewDemo.app */,
);
name = Products;
sourceTree = "<group>";
};
E247A256179278F600738F87 /* Frameworks */ = {
isa = PBXGroup;
children = (
E247A257179278F600738F87 /* UIKit.framework */,
E247A259179278F600738F87 /* Foundation.framework */,
E247A25B179278F600738F87 /* CoreGraphics.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
E247A25D179278F600738F87 /* SearchTableViewDemo */ = {
isa = PBXGroup;
children = (
E247A266179278F600738F87 /* AppDelegate.h */,
E247A267179278F600738F87 /* AppDelegate.m */,
E247A26F179278F700738F87 /* MainStoryboard.storyboard */,
E247A27A17928F2300738F87 /* SearchViewController.h */,
E247A27B17928F2300738F87 /* SearchViewController.m */,
E247A25E179278F600738F87 /* Supporting Files */,
);
path = SearchTableViewDemo;
sourceTree = "<group>";
};
E247A25E179278F600738F87 /* Supporting Files */ = {
isa = PBXGroup;
children = (
E247A25F179278F600738F87 /* SearchTableViewDemo-Info.plist */,
E247A260179278F600738F87 /* InfoPlist.strings */,
E247A263179278F600738F87 /* main.m */,
E247A265179278F600738F87 /* SearchTableViewDemo-Prefix.pch */,
E247A269179278F600738F87 /* Default.png */,
E247A26B179278F600738F87 /* Default@2x.png */,
E247A26D179278F600738F87 /* Default-568h@2x.png */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
E247A253179278F600738F87 /* SearchTableViewDemo */ = {
isa = PBXNativeTarget;
buildConfigurationList = E247A277179278F700738F87 /* Build configuration list for PBXNativeTarget "SearchTableViewDemo" */;
buildPhases = (
E247A250179278F600738F87 /* Sources */,
E247A251179278F600738F87 /* Frameworks */,
E247A252179278F600738F87 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = SearchTableViewDemo;
productName = SearchTableViewDemo;
productReference = E247A254179278F600738F87 /* SearchTableViewDemo.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
E247A24C179278F600738F87 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0460;
ORGANIZATIONNAME = "Arthur Knopper";
};
buildConfigurationList = E247A24F179278F600738F87 /* Build configuration list for PBXProject "SearchTableViewDemo" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = E247A24B179278F600738F87;
productRefGroup = E247A255179278F600738F87 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
E247A253179278F600738F87 /* SearchTableViewDemo */,
);
};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
E247A252179278F600738F87 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
E247A262179278F600738F87 /* InfoPlist.strings in Resources */,
E247A26A179278F600738F87 /* Default.png in Resources */,
E247A26C179278F600738F87 /* Default@2x.png in Resources */,
E247A26E179278F600738F87 /* Default-568h@2x.png in Resources */,
E247A271179278F700738F87 /* MainStoryboard.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
E247A250179278F600738F87 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
E247A264179278F600738F87 /* main.m in Sources */,
E247A268179278F600738F87 /* AppDelegate.m in Sources */,
E247A27C17928F2300738F87 /* SearchViewController.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
E247A260179278F600738F87 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
E247A261179278F600738F87 /* en */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
E247A26F179278F700738F87 /* MainStoryboard.storyboard */ = {
isa = PBXVariantGroup;
children = (
E247A270179278F700738F87 /* en */,
);
name = MainStoryboard.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
E247A275179278F700738F87 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
};
name = Debug;
};
E247A276179278F700738F87 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
E247A278179278F700738F87 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SearchTableViewDemo/SearchTableViewDemo-Prefix.pch";
INFOPLIST_FILE = "SearchTableViewDemo/SearchTableViewDemo-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
E247A279179278F700738F87 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SearchTableViewDemo/SearchTableViewDemo-Prefix.pch";
INFOPLIST_FILE = "SearchTableViewDemo/SearchTableViewDemo-Info.plist";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
E247A24F179278F600738F87 /* Build configuration list for PBXProject "SearchTableViewDemo" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E247A275179278F700738F87 /* Debug */,
E247A276179278F700738F87 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
E247A277179278F700738F87 /* Build configuration list for PBXNativeTarget "SearchTableViewDemo" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E247A278179278F700738F87 /* Debug */,
E247A279179278F700738F87 /* Release */,
);
defaultConfigurationIsVisible = 0;
};
/* End XCConfigurationList section */
};
rootObject = E247A24C179278F600738F87 /* Project object */;
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.

0 comments on commit be582de

Please sign in to comment.